[jboss-svn-commits] JBL Code SVN: r31466 - in labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war: resources/WEB-INF and 1 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sat Feb 6 05:20:09 EST 2010


Author: kevin.conner at jboss.com
Date: 2010-02-06 05:20:09 -0500 (Sat, 06 Feb 2010)
New Revision: 31466

Added:
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/JUDDIApiService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_custodytransfer_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_inquiry_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_juddi_api_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_publication_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_replication_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_security_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscription_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscriptionlistener_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetcaching_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetvalidation_service.wsdl
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/juddi_api_v3.xsd
Modified:
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/CustodyTransferService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/InquiryService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/PublicationService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ReplicationService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SecurityService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionListenerService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetCachingService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetValidationService.java
   labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/web.xml
Log:
Redo juddi WSDL endpoints: JBESB-3174

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/CustodyTransferService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/CustodyTransferService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/CustodyTransferService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -26,10 +26,10 @@
 import org.apache.juddi.api.impl.UDDICustodyTransferImpl;
 
 @WebService(serviceName="UDDICustodyTransferService", 
-      portName="UDDI_Custody_Port",
+      portName="UDDI_CustodyTransfer_PortType",
       endpointInterface="org.uddi.v3_service.UDDICustodyTransferPortType",
       targetNamespace = "urn:uddi-org:v3_service",
-      wsdlLocation="WEB-INF/wsdl/uddi_v3_service.wsdl")
+      wsdlLocation="WEB-INF/wsdl/esb_custodytransfer_service.wsdl")
 public class CustodyTransferService extends UDDICustodyTransferImpl
 {
 

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/InquiryService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/InquiryService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/InquiryService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -26,10 +26,10 @@
 import org.apache.juddi.api.impl.UDDIInquiryImpl;
 
 @WebService(serviceName="UDDIInquiryService", 
-      portName="UDDI_Inquiry_Port",
+      portName="UDDI_Inquiry_PortType",
       endpointInterface="org.uddi.v3_service.UDDIInquiryPortType",
       targetNamespace = "urn:uddi-org:v3_service",
-      wsdlLocation="WEB-INF/wsdl/uddi_v3_service.wsdl"
+      wsdlLocation="WEB-INF/wsdl/esb_inquiry_service.wsdl"
        )
 public class InquiryService extends UDDIInquiryImpl
 {

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/JUDDIApiService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/JUDDIApiService.java	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/JUDDIApiService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,37 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2009 Red Hat, Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.internal.soa.esb.registry.webservices;
+
+import javax.jws.WebService;
+
+import org.apache.juddi.api.impl.JUDDIApiImpl;
+
+ at WebService(serviceName="JUDDIApiService", 
+      endpointInterface="org.apache.juddi.v3_service.JUDDIApiPortType",
+      targetNamespace = "urn:juddi-apache-org:v3_service",
+      portName="JUDDI_Api_PortType",
+      wsdlLocation="WEB-INF/wsdl/esb_juddi_api_service.wsdl"
+       )
+public class JUDDIApiService extends JUDDIApiImpl
+{
+
+}


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/JUDDIApiService.java
___________________________________________________________________
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/PublicationService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/PublicationService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/PublicationService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -26,10 +26,10 @@
 import org.apache.juddi.api.impl.UDDIPublicationImpl;
 
 @WebService(serviceName = "UDDIPublicationService",
-            portName = "UDDI_Publication_Port", 
+            portName = "UDDI_Publication_PortType", 
             endpointInterface = "org.uddi.v3_service.UDDIPublicationPortType", 
             targetNamespace = "urn:uddi-org:v3_service", 
-            wsdlLocation = "WEB-INF/wsdl/uddi_v3_service.wsdl")
+            wsdlLocation = "WEB-INF/wsdl/esb_publication_service.wsdl")
 public class PublicationService extends UDDIPublicationImpl
 {
 

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ReplicationService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ReplicationService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ReplicationService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -26,10 +26,10 @@
 import org.apache.juddi.api.impl.UDDIReplicationImpl;
 
 @WebService(serviceName="UDDIReplicationService", 
-            portName = "UDDI_Replication_Port", 
+            portName = "UDDI_Replication_PortType", 
             endpointInterface="org.uddi.v3_service.UDDIReplicationPortType",
             targetNamespace = "urn:uddi-org:v3_service", 
-            wsdlLocation = "WEB-INF/wsdl/uddi_v3_service.wsdl")
+            wsdlLocation = "WEB-INF/wsdl/esb_replication_service.wsdl")
 public class ReplicationService extends UDDIReplicationImpl
 {
 

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SecurityService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SecurityService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SecurityService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -25,11 +25,11 @@
 
 import org.apache.juddi.api.impl.UDDISecurityImpl;
 
- at WebService(serviceName="UDDISecurityService", 
-      portName="UDDI_Security_Port",
+ at WebService(serviceName="UDDISecurityService",
+      portName="UDDI_Security_PortType",
       endpointInterface="org.uddi.v3_service.UDDISecurityPortType",
       targetNamespace = "urn:uddi-org:v3_service", 
-      wsdlLocation = "WEB-INF/wsdl/uddi_v3_service.wsdl")
+      wsdlLocation = "WEB-INF/wsdl/esb_security_service.wsdl")
 public class SecurityService extends UDDISecurityImpl
 {
 

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionListenerService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionListenerService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionListenerService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -27,10 +27,10 @@
 
 
 @WebService(serviceName="UDDISubscriptionListenerService",
-      portName="UDDI_SubscriptionListener_Port",
+      portName="UDDI_SubscriptionListener_PortType",
       endpointInterface="org.uddi.v3_service.UDDISubscriptionListenerPortType",
       targetNamespace = "urn:uddi-org:v3_service", 
-      wsdlLocation = "WEB-INF/wsdl/uddi_v3_service.wsdl")
+      wsdlLocation = "WEB-INF/wsdl/esb_subscriptionlistener_service.wsdl")
 public class SubscriptionListenerService extends UDDISubscriptionListenerImpl
 {
 

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/SubscriptionService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -26,10 +26,10 @@
 import org.apache.juddi.api.impl.UDDISubscriptionImpl;
 
 @WebService(serviceName="UDDISubscriptionService", 
-      portName="UDDI_Subscription_Port",
+      portName="UDDI_Subscription_PortType",
       endpointInterface="org.uddi.v3_service.UDDISubscriptionPortType",
       targetNamespace = "urn:uddi-org:v3_service", 
-      wsdlLocation = "WEB-INF/wsdl/uddi_v3_service.wsdl")
+      wsdlLocation = "WEB-INF/wsdl/esb_subscription_service.wsdl")
 public class SubscriptionService extends UDDISubscriptionImpl
 {
 

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetCachingService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetCachingService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetCachingService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -26,10 +26,10 @@
 import org.apache.juddi.api.impl.UDDIValueSetCachingImpl;
 
 @WebService(serviceName="UDDIValueSetCachingService", 
-      portName="UDDI_ValueSetCaching_Port",
+      portName="UDDI_ValueSetCaching_PortType",
       endpointInterface="org.uddi.v3_service.UDDIValueSetCachingPortType",
       targetNamespace = "urn:uddi-org:v3_service",
-      wsdlLocation="WEB-INF/wsdl/uddi_v3_service.wsdl"
+      wsdlLocation="WEB-INF/wsdl/esb_valuesetcaching_service.wsdl"
        )
 public class ValueSetCachingService extends UDDIValueSetCachingImpl
 {

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetValidationService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetValidationService.java	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/java/org/jboss/internal/soa/esb/registry/webservices/ValueSetValidationService.java	2010-02-06 10:20:09 UTC (rev 31466)
@@ -26,10 +26,10 @@
 import org.apache.juddi.api.impl.UDDIValueSetValidationImpl;
 
 @WebService(serviceName="UDDIValueSetValidationService", 
-      portName="UDDI_ValueSetValidation_Port",
+      portName="UDDI_ValueSetCaching_PortType",
       endpointInterface="org.uddi.v3_service.UDDIValueSetValidationPortType",
       targetNamespace = "urn:uddi-org:v3_service",
-      wsdlLocation="WEB-INF/wsdl/uddi_v3_service.wsdl"
+      wsdlLocation="WEB-INF/wsdl/esb_valuesetvalidation_service.wsdl"
        )
 public class ValueSetValidationService extends UDDIValueSetValidationImpl
 {

Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/web.xml
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/web.xml	2010-02-06 00:10:11 UTC (rev 31465)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/web.xml	2010-02-06 10:20:09 UTC (rev 31466)
@@ -51,7 +51,7 @@
     
     <servlet>
         <servlet-name>JUDDIApiService</servlet-name>
-        <servlet-class>org.apache.juddi.api.impl.JUDDIApiImpl</servlet-class>
+        <servlet-class>org.jboss.internal.soa.esb.registry.webservices.JUDDIApiService</servlet-class>
     </servlet>
 
     <servlet>

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_custodytransfer_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_custodytransfer_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_custodytransfer_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi="urn:uddi-org:api_v3"
+             xmlns:uddi_custody="urn:uddi-org:custody_v3" 
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+			<xsd:import namespace="urn:uddi-org:custody_v3" schemaLocation="uddi_v3custody.xsd"/>
+		</xsd:schema>
+	</types>
+	<message name="successMessage"/>
+	<message name="dispositionReportFaultMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="discard_transferToken">
+		<part name="body" element="uddi_custody:discard_transferToken"/>
+	</message>
+	<message name="get_transferTokenMessage">
+		<part name="body" element="uddi_custody:get_transferToken"/>
+	</message>
+	<message name="transfer_entitiesMessage">
+		<part name="body" element="uddi_custody:transfer_entities"/>
+	</message>
+	<message name="transferTokenMessage">
+		<part name="body" element="uddi_custody:transferToken"/>
+	</message>
+	<portType name="UDDI_CustodyTransfer_PortType">
+		<documentation>This portType defines all of the UDDI custody transfer operations.</documentation>
+		<operation name="discard_transferToken">
+			<input message="tns:discard_transferToken"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_transferToken">
+			<input message="tns:get_transferTokenMessage"/>
+			<output message="tns:transferTokenMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="transfer_entities">
+			<input message="tns:transfer_entitiesMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+	</portType>
+
+	<binding name="UDDI_CustodyTransfer_SoapBinding" type="tns:UDDI_CustodyTransfer_PortType">
+		<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+		<operation name="discard_transferToken">
+			<soap:operation soapAction="discard_transferToken"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_transferToken">
+			<soap:operation soapAction="get_transferToken"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="transfer_entities">
+			<soap:operation soapAction="transfer_entities"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+
+    <service name="UDDI_CustodyTransfer_Port">
+        <!-- Custody Interface -->
+        <port name="UDDI_CustodyTransfer_PortType" binding="tns:UDDI_CustodyTransfer_SoapBinding">
+            <soap:address location="http://localhost/uddi/custody/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_custodytransfer_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_inquiry_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_inquiry_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_inquiry_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,294 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi="urn:uddi-org:api_v3" 
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+		</xsd:schema>
+	</types>
+	
+	<message name="find_bindingMessage">
+		<part name="body" element="uddi:find_binding"/>
+	</message>
+	<message name="find_businessMessage">
+		<part name="body" element="uddi:find_business"/>
+	</message>
+	<message name="find_relatedBusinessesMessage">
+		<part name="body" element="uddi:find_relatedBusinesses"/>
+	</message>
+	<message name="find_serviceMessage">
+		<part name="body" element="uddi:find_service"/>
+	</message>
+	<message name="find_tModelMessage">
+		<part name="body" element="uddi:find_tModel"/>
+	</message>
+	<message name="get_businessDetailMessage">
+		<part name="body" element="uddi:get_businessDetail"/>
+	</message>
+	<message name="get_operationalInfoMessage">
+		<part name="body" element="uddi:get_operationalInfo"/>
+	</message>
+	<message name="get_serviceDetailMessage">
+		<part name="body" element="uddi:get_serviceDetail"/>
+	</message>
+	<message name="get_tModelDetailMessage">
+		<part name="body" element="uddi:get_tModelDetail"/>
+	</message>
+	<message name="bindingDetailMessage">
+		<part name="body" element="uddi:bindingDetail"/>
+	</message>
+	<message name="businessListMessage">
+		<part name="body" element="uddi:businessList"/>
+	</message>
+	<message name="relatedBusinessesListMessage">
+		<part name="body" element="uddi:relatedBusinessesList"/>
+	</message>
+	<message name="serviceListMessage">
+		<part name="body" element="uddi:serviceList"/>
+	</message>
+	<message name="tModelListMessage">
+		<part name="body" element="uddi:tModelList"/>
+	</message>
+	<message name="businessDetailMessage">
+		<part name="body" element="uddi:businessDetail"/>
+	</message>
+	<message name="operationalInfosMessage">
+		<part name="body" element="uddi:operationalInfos"/>
+	</message>
+	<message name="serviceDetailMessage">
+		<part name="body" element="uddi:serviceDetail"/>
+	</message>
+	<message name="tModelDetailMessage">
+		<part name="body" element="uddi:tModelDetail"/>
+	</message>
+	<message name="get_bindingDetailMessage">
+		<part name="body" element="uddi:get_bindingDetail"/>
+	</message>
+	<message name="dispositionReportFaultMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+
+	<portType name="UDDI_Inquiry_PortType">
+		<documentation>This portType defines all of the UDDI inquiry operations.</documentation>
+		<operation name="find_binding">
+			<input message="tns:find_bindingMessage"/>
+			<output message="tns:bindingDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="find_business">
+			<input message="tns:find_businessMessage"/>
+			<output message="tns:businessListMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="find_relatedBusinesses">
+			<input message="tns:find_relatedBusinessesMessage"/>
+			<output message="tns:relatedBusinessesListMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="find_service">
+			<input message="tns:find_serviceMessage"/>
+			<output message="tns:serviceListMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="find_tModel">
+			<input message="tns:find_tModelMessage"/>
+			<output message="tns:tModelListMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_bindingDetail">
+			<input message="tns:get_bindingDetailMessage"/>
+			<output message="tns:bindingDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_businessDetail">
+			<input message="tns:get_businessDetailMessage"/>
+			<output message="tns:businessDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_operationalInfo">
+			<input message="tns:get_operationalInfoMessage"/>
+			<output message="tns:operationalInfosMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_serviceDetail">
+			<input message="tns:get_serviceDetailMessage"/>
+			<output message="tns:serviceDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_tModelDetail">
+			<input message="tns:get_tModelDetailMessage"/>
+			<output message="tns:tModelDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+	</portType>
+
+	<binding name="UDDI_Inquiry_SoapBinding" type="tns:UDDI_Inquiry_PortType">
+		<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+		<operation name="find_binding">
+			<soap:operation soapAction="find_binding"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_business">
+			<soap:operation soapAction="find_business"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_relatedBusinesses">
+			<soap:operation soapAction="find_relatedBusinesses"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_service">
+			<soap:operation soapAction="find_service"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_tModel">
+			<soap:operation soapAction="find_tModel"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_bindingDetail">
+			<soap:operation soapAction="get_bindingDetail"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_businessDetail">
+			<soap:operation soapAction="get_businessDetail"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_operationalInfo">
+			<soap:operation soapAction="get_operationalInfo"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_serviceDetail">
+			<soap:operation soapAction="get_serviceDetail"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_tModelDetail">
+			<soap:operation soapAction="get_tModelDetail"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+
+    <service name="UDDI_Inquiry_Port">
+        <!-- UDDI API Interface-->
+        <port name="UDDI_Inquiry_PortType" binding="tns:UDDI_Inquiry_SoapBinding">
+            <soap:address location="http://localhost/uddi/inquire/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_inquiry_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_juddi_api_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_juddi_api_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_juddi_api_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,248 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name="JUDDIApiService" targetNamespace="urn:juddi-apache-org:v3_service" xmlns:ns2="urn:uddi-org:api_v3" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="urn:juddi-apache-org:api_v3" xmlns:ns4="urn:uddi-org:sub_v3" xmlns:ns3="http://www.w3.org/2000/09/xmldsig#" xmlns:tns="urn:juddi-apache-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
+  <types>
+    <xs:schema targetNamespace="urn:juddi-apache-org:v3_service" xmlns:ns1="urn:juddi-apache-org:api_v3" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+      <xs:import namespace="urn:juddi-apache-org:api_v3" schemaLocation="juddi_api_v3.xsd"/>
+
+      <xs:element name="invoke_SyncSubscriptionResponse" nillable="true" type="ns1:syncSubscriptionDetail"/>
+      <xs:element name="save_ClerkResponse" nillable="true" type="ns1:clerkDetail"/>
+      <xs:element name="save_ClientSubscriptionInfoResponse" nillable="true" type="ns1:clientSubscriptionInfoDetail"/>
+      <xs:element name="save_NodeResponse" nillable="true" type="ns1:nodeDetail"/>
+      <xs:element name="save_publisherResponse" nillable="true" type="ns1:publisherDetail"/>
+    </xs:schema>
+  </types>
+  <message name="JUDDI_Api_PortType_delete_ClientSubscriptionInfo">
+    <part name="body" element="ns1:delete_ClientSubscriptionInfo">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_get_publisherDetailResponse">
+    <part name="body" element="ns1:publisherDetail">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_NodeResponse">
+    <part name="save_NodeResponse" element="tns:save_NodeResponse">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_ClerkResponse">
+    <part name="save_ClerkResponse" element="tns:save_ClerkResponse">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_delete_publisher">
+    <part name="body" element="ns1:delete_publisher">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_publisherResponse">
+    <part name="save_publisherResponse" element="tns:save_publisherResponse">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_ClientSubscriptionInfoResponse">
+    <part name="save_ClientSubscriptionInfoResponse" element="tns:save_ClientSubscriptionInfoResponse">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_delete_ClientSubscriptionInfoResponse">
+  </message>
+  <message name="JUDDI_Api_PortType_delete_publisherResponse">
+  </message>
+  <message name="JUDDI_Api_PortType_invoke_SyncSubscriptionResponse">
+    <part name="invoke_SyncSubscriptionResponse" element="tns:invoke_SyncSubscriptionResponse">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_get_publisherDetail">
+    <part name="body" element="ns1:get_publisherDetail">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_Clerk">
+    <part name="body" element="ns1:save_Clerk">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_adminDelete_tmodel">
+    <part name="body" element="ns1:adminDelete_tmodel">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_adminDelete_tmodelResponse">
+  </message>
+  <message name="JUDDI_Api_PortType_invoke_SyncSubscription">
+    <part name="body" element="ns1:invoke_SyncSubscription">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_ClientSubscriptionInfo">
+    <part name="body" element="ns1:save_ClientSubscriptionInfo">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_publisher">
+    <part name="body" element="ns1:save_publisher">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_save_Node">
+    <part name="body" element="ns1:save_Node">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_get_allPublisherDetailResponse">
+    <part name="body" element="ns1:publisherDetail">
+    </part>
+  </message>
+  <message name="JUDDI_Api_PortType_get_allPublisherDetail">
+    <part name="body" element="ns1:get_allPublisherDetail">
+    </part>
+  </message>
+  <portType name="JUDDI_Api_PortType">
+    <operation name="adminDelete_tmodel" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_adminDelete_tmodel">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_adminDelete_tmodelResponse">
+    </output>
+    </operation>
+    <operation name="delete_ClientSubscriptionInfo" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_delete_ClientSubscriptionInfo">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_delete_ClientSubscriptionInfoResponse">
+    </output>
+    </operation>
+    <operation name="delete_publisher" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_delete_publisher">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_delete_publisherResponse">
+    </output>
+    </operation>
+    <operation name="get_allPublisherDetail" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_get_allPublisherDetail">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_get_allPublisherDetailResponse">
+    </output>
+    </operation>
+    <operation name="get_publisherDetail" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_get_publisherDetail">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_get_publisherDetailResponse">
+    </output>
+    </operation>
+    <operation name="invoke_SyncSubscription" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_invoke_SyncSubscription">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_invoke_SyncSubscriptionResponse">
+    </output>
+    </operation>
+    <operation name="save_Clerk" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_save_Clerk">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_save_ClerkResponse">
+    </output>
+    </operation>
+    <operation name="save_ClientSubscriptionInfo" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_save_ClientSubscriptionInfo">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_save_ClientSubscriptionInfoResponse">
+    </output>
+    </operation>
+    <operation name="save_Node" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_save_Node">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_save_NodeResponse">
+    </output>
+    </operation>
+    <operation name="save_publisher" parameterOrder="body">
+      <input message="tns:JUDDI_Api_PortType_save_publisher">
+    </input>
+      <output message="tns:JUDDI_Api_PortType_save_publisherResponse">
+    </output>
+    </operation>
+  </portType>
+  <binding name="JUDDI_Api_PortTypeBinding" type="tns:JUDDI_Api_PortType">
+    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+    <operation name="adminDelete_tmodel">
+      <soap:operation soapAction="adminDelete_tmodel"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="delete_ClientSubscriptionInfo">
+      <soap:operation soapAction="delete_ClientSubscriptionInfo"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="delete_publisher">
+      <soap:operation soapAction="delete_publisher"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="get_allPublisherDetail">
+      <soap:operation soapAction="get_allPublisherDetail"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="get_publisherDetail">
+      <soap:operation soapAction="get_publisherDetail"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="invoke_SyncSubscription">
+      <soap:operation soapAction="invoke_SyncSubscription"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="save_Clerk">
+      <soap:operation soapAction="save_Clerk"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="save_ClientSubscriptionInfo">
+      <soap:operation soapAction="save_ClientSubscriptionInfo"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="save_Node">
+      <soap:operation soapAction="save_Node"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+    <operation name="save_publisher">
+      <soap:operation soapAction="save_publisher"/>
+      <input>
+        <soap:body use="literal"/>
+      </input>
+      <output>
+        <soap:body use="literal"/>
+      </output>
+    </operation>
+  </binding>
+  <service name="JUDDI_Api_Port">
+    <port name="JUDDI_Api_PortType" binding="tns:JUDDI_Api_PortTypeBinding">
+      <soap:address location="http://127.0.0.1:8080/juddiv3/services/juddi-api"/>
+    </port>
+  </service>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_juddi_api_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_publication_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_publication_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_publication_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,373 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi="urn:uddi-org:api_v3" 
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:api_v3_portType" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+		</xsd:schema>
+	</types>
+
+	<message name="add_publisherAssertionsMessage">
+		<part name="body" element="uddi:add_publisherAssertions"/>
+	</message>
+	<message name="delete_bindingMessage">
+		<part name="body" element="uddi:delete_binding"/>
+	</message>
+	<message name="delete_businessMessage">
+		<part name="body" element="uddi:delete_business"/>
+	</message>
+	<message name="delete_publisherAssertionsMessage">
+		<part name="body" element="uddi:delete_publisherAssertions"/>
+	</message>
+	<message name="delete_serviceMessage">
+		<part name="body" element="uddi:delete_service"/>
+	</message>
+	<message name="delete_tModelMessage">
+		<part name="body" element="uddi:delete_tModel"/>
+	</message>
+	<message name="get_assertionStatusReportMessage">
+		<part name="body" element="uddi:get_assertionStatusReport"/>
+	</message>
+	<message name="get_publisherAssertionsMessage">
+		<part name="body" element="uddi:get_publisherAssertions"/>
+	</message>
+	<message name="get_registeredInfoMessage">
+		<part name="body" element="uddi:get_registeredInfo"/>
+	</message>
+	<message name="save_bindingMessage">
+		<part name="body" element="uddi:save_binding"/>
+	</message>
+	<message name="save_businessMessage">
+		<part name="body" element="uddi:save_business"/>
+	</message>
+	<message name="save_serviceMessage">
+		<part name="body" element="uddi:save_service"/>
+	</message>
+	<message name="save_tModelMessage">
+		<part name="body" element="uddi:save_tModel"/>
+	</message>
+	<message name="set_publisherAssertionsMessage">
+		<part name="body" element="uddi:set_publisherAssertions"/>
+	</message>
+	<message name="assertionStatusReportMessage">
+		<part name="body" element="uddi:assertionStatusReport"/>
+	</message>
+	<message name="publisherAssertionsResponseMessage">
+		<part name="body" element="uddi:publisherAssertionsResponse"/>
+	</message>
+	<message name="registeredInfoMessage">
+		<part name="body" element="uddi:registeredInfo"/>
+	</message>
+	<message name="bindingDetailMessage">
+		<part name="body" element="uddi:bindingDetail"/>
+	</message>
+	<message name="businessDetailMessage">
+		<part name="body" element="uddi:businessDetail"/>
+	</message>
+	<message name="serviceDetailMessage">
+		<part name="body" element="uddi:serviceDetail"/>
+	</message>
+	<message name="tModelDetailMessage">
+		<part name="body" element="uddi:tModelDetail"/>
+	</message>
+	<message name="publisherAssertionsMessage">
+		<part name="body" element="uddi:publisherAssertions"/>
+	</message>
+	<message name="successMessage"/>
+	<message name="dispositionReportFaultMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+
+	<portType name="UDDI_Publication_PortType">
+		<documentation>This portType defines all of the UDDI publication operations.</documentation>
+		<operation name="add_publisherAssertions">
+			<input message="tns:add_publisherAssertionsMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="delete_binding">
+			<input message="tns:delete_bindingMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="delete_business">
+			<input message="tns:delete_businessMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="delete_publisherAssertions">
+			<input message="tns:delete_publisherAssertionsMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="delete_service">
+			<input message="tns:delete_serviceMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="delete_tModel">
+			<input message="tns:delete_tModelMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_assertionStatusReport">
+			<input message="tns:get_assertionStatusReportMessage"/>
+			<output message="tns:assertionStatusReportMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_publisherAssertions">
+			<input message="tns:get_publisherAssertionsMessage"/>
+			<output message="tns:publisherAssertionsResponseMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_registeredInfo">
+			<input message="tns:get_registeredInfoMessage"/>
+			<output message="tns:registeredInfoMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="save_binding">
+			<input message="tns:save_bindingMessage"/>
+			<output message="tns:bindingDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="save_business">
+			<input message="tns:save_businessMessage"/>
+			<output message="tns:businessDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="save_service">
+			<input message="tns:save_serviceMessage"/>
+			<output message="tns:serviceDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="save_tModel">
+			<input message="tns:save_tModelMessage"/>
+			<output message="tns:tModelDetailMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="set_publisherAssertions">
+			<input message="tns:set_publisherAssertionsMessage"/>
+			<output message="tns:publisherAssertionsMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+	</portType>
+
+	<binding name="UDDI_Publication_SoapBinding" type="tns:UDDI_Publication_PortType">
+		<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+		<documentation>This is the SOAP binding for the UDDI Publication portType.</documentation>
+		<operation name="add_publisherAssertions">
+			<soap:operation soapAction="add_publisherAssertions"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_binding">
+			<soap:operation soapAction="delete_binding"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_business">
+			<soap:operation soapAction="delete_business"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_publisherAssertions">
+			<soap:operation soapAction="delete_publisherAssertions"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_service">
+			<soap:operation soapAction="delete_service"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_tModel">
+			<soap:operation soapAction="delete_tModel"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_assertionStatusReport">
+			<soap:operation soapAction="get_assertionStatusReport"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_publisherAssertions">
+			<soap:operation soapAction="get_publisherAssertions"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_registeredInfo">
+			<soap:operation soapAction="get_registeredInfo"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_binding">
+			<soap:operation soapAction="save_binding"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_business">
+			<soap:operation soapAction="save_business"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_service">
+			<soap:operation soapAction="save_service"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_tModel">
+			<soap:operation soapAction="save_tModel"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="set_publisherAssertions">
+			<soap:operation soapAction="set_publisherAssertions"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+
+    <service name="UDDI_Publish_Port">
+        <port name="UDDI_Publication_PortType" binding="tns:UDDI_Publication_SoapBinding">
+            <soap:address location="http://localhost/uddi/publish/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_publication_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_replication_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_replication_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_replication_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,178 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi_repl="urn:uddi-org:repl_v3"
+             xmlns:uddi="urn:uddi-org:api_v3" 
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+			<xsd:import namespace="urn:uddi-org:repl_v3" schemaLocation="uddi_v3replication.xsd"/>
+		</xsd:schema>
+	</types>
+	<message name="changeRecordsMessage">
+		<part name="body" element="uddi_repl:changeRecords"/>
+	</message>
+	<message name="dispositionReportFaultMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="successMessage"/>
+	<message name="do_pingMessage">
+		<part name="body" element="uddi_repl:do_ping"/>
+	</message>
+	<message name="get_changeRecordsMessage">
+		<part name="body" element="uddi_repl:get_changeRecords"/>
+	</message>
+	<message name="get_highWaterMarksMessage">
+		<part name="body" element="uddi_repl:get_highWaterMarks"/>
+	</message>
+	<message name="highWaterMarksMessage">
+		<part name="body" element="uddi_repl:highWaterMarks"/>
+	</message>
+	<message name="notify_changeRecordsAvailableMessage">
+		<part name="body" element="uddi_repl:notify_changeRecordsAvailable"/>
+	</message>
+	<message name="operatorNodeIDMessage">
+		<part name="body" element="uddi_repl:operatorNodeID"/>
+	</message>
+	<message name="transfer_custodyMessage">
+		<part name="body" element="uddi_repl:transfer_custody"/>
+	</message>
+	<portType name="UDDI_Replication_PortType">
+		<documentation>This portType defines all of the UDDI replication operations.</documentation>
+		<operation name="get_changeRecords">
+			<input message="tns:get_changeRecordsMessage"/>
+			<output message="tns:changeRecordsMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="notify_changeRecordsAvailable">
+			<input message="tns:notify_changeRecordsAvailableMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="do_ping">
+			<input message="tns:do_pingMessage"/>
+			<output message="tns:operatorNodeIDMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_highWaterMarks">
+			<input message="tns:get_highWaterMarksMessage"/>
+			<output message="tns:highWaterMarksMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="transfer_custody">
+			<input message="tns:transfer_custodyMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+	</portType>
+
+	<binding name="UDDI_Replication_SoapBinding" type="tns:UDDI_Replication_PortType">
+		<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+		<operation name="get_changeRecords">
+			<soap:operation soapAction="get_changeRecords"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="notify_changeRecordsAvailable">
+			<soap:operation soapAction="notify_changeRecordsAvailable"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="do_ping">
+			<soap:operation soapAction="do_ping"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_highWaterMarks">
+			<soap:operation soapAction="get_highWaterMarks"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="transfer_custody">
+			<soap:operation soapAction="transfer_custody"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+
+    <service name="UDDI_Replication_Port">
+        <!-- Replication Interface -->
+        <port name="UDDI_Replication_PortType" binding="tns:UDDI_Replication_SoapBinding">
+            <soap:address location="http://localhost/uddi/replication/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_replication_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_security_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_security_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_security_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi="urn:uddi-org:api_v3" 
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:api_v3_portType" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+		</xsd:schema>
+	</types>
+
+	<message name="dispositionReportFaultMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="successMessage"/>
+	<message name="authTokenMessage">
+		<part name="body" element="uddi:authToken"/>
+	</message>
+	<message name="discard_authTokenMessage">
+		<part name="body" element="uddi:discard_authToken"/>
+	</message>
+	<message name="get_authTokenMessage">
+		<part name="body" element="uddi:get_authToken"/>
+	</message>
+
+	<portType name="UDDI_Security_PortType">
+		<documentation>This portType defines all of the UDDI security operations.</documentation>
+		<operation name="discard_authToken">
+			<input message="tns:discard_authTokenMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_authToken">
+			<input message="tns:get_authTokenMessage"/>
+			<output message="tns:authTokenMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+	</portType>
+
+	<binding name="UDDI_Security_SoapBinding" type="tns:UDDI_Security_PortType">
+		<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+		<documentation>This is the SOAP binding for the UDDI Security portType.</documentation>
+		<operation name="discard_authToken">
+			<soap:operation soapAction="discard_authToken"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_authToken">
+			<soap:operation soapAction="get_authToken"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+
+    <service name="UDDI_Security_Port">
+        <port name="UDDI_Security_PortType" binding="tns:UDDI_Security_SoapBinding">
+            <soap:address location="http://localhost/uddi/security/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_security_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscription_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscription_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscription_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,155 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi_sub="urn:uddi-org:sub_v3"
+             xmlns:uddi="urn:uddi-org:api_v3"
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+			<xsd:import namespace="urn:uddi-org:sub_v3" schemaLocation="uddi_v3subscription.xsd"/>
+		</xsd:schema>
+	</types>
+	<message name="delete_subscriptionMessage">
+		<part name="body" element="uddi_sub:delete_subscription"/>
+	</message>
+	<message name="dispositionReportFaultMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="successMessage"/>
+	<message name="get_subscriptionResultsMessage">
+		<part name="body" element="uddi_sub:get_subscriptionResults"/>
+	</message>
+	<message name="get_subscriptionsMessage">
+		<part name="body" element="uddi_sub:get_subscriptions"/>
+	</message>
+	<message name="save_subscriptionMessage">
+		<part name="body" element="uddi_sub:save_subscription"/>
+	</message>
+	<message name="subscriptionResultsListMessage">
+		<part name="body" element="uddi_sub:subscriptionResultsList"/>
+	</message>
+	<message name="subscriptionsMessage">
+		<part name="body" element="uddi_sub:subscriptions"/>
+	</message>
+	<portType name="UDDI_Subscription_PortType">
+		<documentation>This portType defines all of the UDDI subscription operations.</documentation>
+		<operation name="delete_subscription">
+			<input message="tns:delete_subscriptionMessage"/>
+			<output message="tns:successMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_subscriptionResults">
+			<input message="tns:get_subscriptionResultsMessage"/>
+			<output message="tns:subscriptionResultsListMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="get_subscriptions">
+			<input message="tns:get_subscriptionsMessage"/>
+			<output message="tns:subscriptionsMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+		<operation name="save_subscription">
+			<input message="tns:save_subscriptionMessage"/>
+			<output message="tns:subscriptionsMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+	</portType>
+
+	<binding name="UDDI_Subscription_SoapBinding" type="tns:UDDI_Subscription_PortType">
+		<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+		<operation name="delete_subscription">
+			<soap:operation soapAction="delete_subscription"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_subscriptionResults">
+			<soap:operation soapAction="get_subscriptionResults"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_subscriptions">
+			<soap:operation soapAction="get_subscriptions"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_subscription">
+			<soap:operation soapAction="save_subscription"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+
+    <service name="UDDI_Subscription_Port">
+        <!-- Subscription Interface -->
+        <port name="UDDI_Subscription_PortType" binding="tns:UDDI_Subscription_SoapBinding">
+            <soap:address location="http://localhost/uddi/subscription/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscription_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscriptionlistener_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscriptionlistener_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscriptionlistener_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi="urn:uddi-org:api_v3"
+             xmlns:uddi_subr="urn:uddi-org:subr_v3" 
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+			<xsd:import namespace="urn:uddi-org:subr_v3" schemaLocation="uddi_v3subscriptionListener.xsd"/>
+		</xsd:schema>
+	</types>
+	<message name="dispositionReportFaultMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="dispositionReportMessage">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="notify_subscriptionListenerMessage">
+		<part name="body" element="uddi_subr:notify_subscriptionListener"/>
+	</message>
+	<portType name="UDDI_SubscriptionListener_PortType">
+		<documentation>This portType defines all of the UDDI subscriptionListener operations.</documentation>
+		<operation name="notify_subscriptionListener">
+			<input message="tns:notify_subscriptionListenerMessage"/>
+			<output message="tns:dispositionReportMessage"/>
+			<fault name="error" message="tns:dispositionReportFaultMessage"/>
+		</operation>
+	</portType>
+
+	<binding name="UDDI_SubscriptionListener_SoapBinding" type="tns:UDDI_SubscriptionListener_PortType">
+		<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+		<operation name="notify_subscriptionListener">
+			<soap:operation soapAction="notify_subscriptionListener"/>
+			<input>
+				<soap:body use="literal"/>
+			</input>
+			<output>
+				<soap:body use="literal"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+
+    <service name="UDDI_SubscriptionListener_Port">
+        <!-- Subscription Listener Interface -->
+        <port name="UDDI_SubscriptionListener_PortType" binding="tns:UDDI_SubscriptionListener_SoapBinding">
+            <soap:address location="http://localhost/uddi/subscriptionlistener/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_subscriptionlistener_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetcaching_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetcaching_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetcaching_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:uddi_vscache="urn:uddi-org:vscache_v3"
+             xmlns:uddi="urn:uddi-org:api_v3" 
+             xmlns:tns="urn:uddi-org:v3_service"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+
+    <types>
+        <xsd:schema targetNamespace="urn:uddi-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+            <xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+            <xsd:import namespace="urn:uddi-org:vscache_v3" schemaLocation="uddi_v3valuesetcaching.xsd"/>
+        </xsd:schema>
+    </types>
+    <message name="dispositionReportFaultMessage">
+        <part name="body" element="uddi:dispositionReport"/>
+    </message>
+    <message name="get_allValidValuesMessage">
+        <part name="body" element="uddi_vscache:get_allValidValues"/>
+    </message>
+    <message name="validValuesListMessage">
+        <part name="body" element="uddi_vscache:validValuesList"/>
+    </message>
+    <portType name="UDDI_ValueSetCaching_PortType">
+        <documentation>This portType defines all of the UDDI value set caching operations.</documentation>
+        <operation name="get_allValidValues">
+            <input message="tns:get_allValidValuesMessage"/>
+            <output message="tns:validValuesListMessage"/>
+            <fault name="error" message="tns:dispositionReportFaultMessage"/>
+        </operation>
+    </portType>
+    
+    <binding name="UDDI_ValueSetCaching_SoapBinding" type="tns:UDDI_ValueSetCaching_PortType">
+        <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+        <operation name="get_allValidValues">
+            <soap:operation soapAction="get_allValidValues"/>
+            <input>
+                <soap:body use="literal"/>
+            </input>
+            <output>
+                <soap:body use="literal"/>
+            </output>
+            <fault name="error">
+                <soap:fault name="error" use="literal"/>
+            </fault>
+        </operation>
+    </binding>
+
+    <service name="UDDI_ValueSetCaching_Port">
+        <!-- Value Set Caching Interface -->
+        <port name="UDDI_ValueSetCaching_PortType" binding="tns:UDDI_ValueSetCaching_SoapBinding">
+            <soap:address location="http://localhost/uddi/valuesetcaching/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetcaching_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetvalidation_service.wsdl
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetvalidation_service.wsdl	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetvalidation_service.wsdl	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+	     xmlns:uddi_vs="urn:uddi-org:vs_v3"
+	     xmlns:uddi="urn:uddi-org:api_v3" 
+	     xmlns:tns="urn:uddi-org:v3_service"
+	     targetNamespace="urn:uddi-org:v3_service">
+    <!--
+		Copyright (c) 2000-2002 by Accenture, Ariba, Inc., Commerce One, Inc.
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., Intel
+		Corporation, International Business Machines Corporation, Microsoft
+		Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., and
+		VeriSign, Inc. All Rights Reserved. Copyright (c) OASIS Open
+		2002-2004. All Rights Reserved. Version 3.0.2 This document and
+		translations of it may be copied and furnished to others, and
+		derivative works that comment on or otherwise explain it or assist in
+		its implementation may be prepared, copied, published and distributed,
+		in whole or in part, without restriction of any kind, provided that
+		the above copyright notice and this paragraph are included on all such
+		copies and derivative works. However, this document itself may not be
+		modified in any way, such as by removing the copyright notice or
+		references to OASIS, except as needed for the purpose of developing
+		OASIS specifications, in which case the procedures for copyrights
+		defined in the OASIS Intellectual Property Rights document must be
+		followed, or as required to translate it into languages other than
+		English.
+	-->
+
+    <types>
+        <xsd:schema targetNamespace="urn:uddi-org:v3_service" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+            <xsd:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+            <xsd:import namespace="urn:uddi-org:vs_v3" schemaLocation="uddi_v3valueset.xsd"/>
+        </xsd:schema>
+    </types>
+
+    <message name="dispositionReportFaultMessage">
+        <part name="body" element="uddi:dispositionReport"/>
+    </message>
+    <message name="dispositionReportMessage">
+        <part name="body" element="uddi:dispositionReport"/>
+    </message>
+    <message name="validate_valuesMessage">
+        <part name="body" element="uddi_vs:validate_values"/>
+    </message>
+
+    <portType name="UDDI_ValueSetValidation_PortType">
+        <documentation>This portType defines all of the UDDI value set validation operations.</documentation>
+        <operation name="validate_values">
+            <input message="tns:validate_valuesMessage"/>
+            <output message="tns:dispositionReportMessage"/>
+            <fault name="error" message="tns:dispositionReportFaultMessage"/>
+        </operation>
+    </portType>
+
+    <binding name="UDDI_ValueSetValidation_SoapBinding" type="tns:UDDI_ValueSetValidation_PortType">
+        <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
+        <operation name="validate_values">
+            <soap:operation soapAction="validate_values"/>
+            <input>
+                <soap:body use="literal"/>
+            </input>
+            <output>
+                <soap:body use="literal"/>
+            </output>
+            <fault name="error">
+                <soap:fault name="error" use="literal"/>
+            </fault>
+        </operation>
+    </binding>
+
+    <service name="UDDI_Service">
+        <!-- Value Set Validation Interface -->
+        <port name="UDDI_ValueSetCaching_PortType" binding="tns:UDDI_ValueSetValidation_SoapBinding">
+            <soap:address location="http://localhost/uddi/valuesetvalidation/"/>
+        </port>
+    </service>
+
+	<documentation>WSDL service definition for UDDI 3.0.2 specification</documentation>
+</definitions>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/esb_valuesetvalidation_service.wsdl
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native

Added: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/juddi_api_v3.xsd
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/juddi_api_v3.xsd	                        (rev 0)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/juddi_api_v3.xsd	2010-02-06 10:20:09 UTC (rev 31466)
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema elementFormDefault="qualified" targetNamespace="urn:juddi-apache-org:api_v3" version="1.0" xmlns:ns1="urn:uddi-org:api_v3" xmlns:ns2="http://www.w3.org/2000/09/xmldsig#" xmlns:ns3="urn:uddi-org:sub_v3" xmlns:tns="urn:juddi-apache-org:api_v3" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+ <xs:import namespace="urn:uddi-org:api_v3" schemaLocation="uddi_v3.xsd"/>
+ <xs:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd"/>
+ <xs:import namespace="urn:uddi-org:sub_v3" schemaLocation="uddi_v3subscription.xsd"/>
+
+ <xs:element name="adminDelete_tmodel" nillable="true" type="ns1:delete_tModel"/>
+ <xs:element name="delete_ClientSubscriptionInfo" nillable="true" type="tns:delete_clientSubscriptionInfo"/>
+ <xs:element name="delete_publisher" nillable="true" type="tns:delete_publisher"/>
+ <xs:element name="get_allPublisherDetail" nillable="true" type="tns:get_allPublisherDetail"/>
+ <xs:element name="get_publisherDetail" nillable="true" type="tns:get_publisher_detail"/>
+ <xs:element name="invoke_SyncSubscription" nillable="true" type="tns:syncSubscription"/>
+ <xs:element name="publisherDetail" nillable="true" type="tns:publisherDetail"/>
+ <xs:element name="save_Clerk" nillable="true" type="tns:save_clerkInfo"/>
+ <xs:element name="save_ClientSubscriptionInfo" nillable="true" type="tns:save_clientSubscriptionInfo"/>
+ <xs:element name="save_Node" nillable="true" type="tns:save_noodeInfo"/>
+ <xs:element name="save_publisher" nillable="true" type="tns:save_publisher"/>
+ <xs:complexType name="delete_publisher">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" name="publisherId" type="xs:string"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="get_allPublisherDetail">
+  <xs:sequence>
+   <xs:element minOccurs="0" ref="ns1:authInfo"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="publisherDetail">
+  <xs:sequence>
+   <xs:element maxOccurs="unbounded" minOccurs="0" name="publisher" nillable="true" type="tns:publisher"/>
+  </xs:sequence>
+  <xs:attribute name="truncated" type="xs:boolean"/>
+ </xs:complexType>
+ <xs:complexType name="publisher">
+  <xs:sequence>
+   <xs:element name="publisherName" type="xs:string"/>
+   <xs:element minOccurs="0" name="emailAddress" type="xs:string"/>
+   <xs:element minOccurs="0" name="isAdmin" type="xs:string"/>
+   <xs:element minOccurs="0" name="isEnabled" type="xs:string"/>
+   <xs:element minOccurs="0" name="maxBindingsPerService" type="xs:int"/>
+   <xs:element minOccurs="0" name="maxBusinesses" type="xs:int"/>
+   <xs:element minOccurs="0" name="maxServicePerBusiness" type="xs:int"/>
+   <xs:element minOccurs="0" name="maxTModels" type="xs:int"/>
+   <xs:element maxOccurs="unbounded" minOccurs="0" ref="ns2:Signature"/>
+  </xs:sequence>
+  <xs:attribute name="authorizedName" type="xs:string" use="required"/>
+ </xs:complexType>
+ <xs:complexType name="get_publisher_detail">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" name="publisherId" type="xs:string"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="save_publisher">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" name="publisher" type="tns:publisher"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="delete_clientSubscriptionInfo">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" name="subscriptionKey" type="xs:string"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="save_clientSubscriptionInfo">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" name="clientSubscriptionInfo" type="tns:clientSubscriptionInfo"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="clientSubscriptionInfo">
+  <xs:sequence>
+   <xs:element name="subscriptionKey" type="xs:string"/>
+   <xs:element name="fromClerk" type="tns:clerk"/>
+   <xs:element name="toClerk" type="tns:clerk"/>
+   <xs:element minOccurs="0" name="lastModified" type="xs:dateTime"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="clerk">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="name" type="xs:string"/>
+   <xs:element minOccurs="0" name="node" type="tns:node"/>
+   <xs:element minOccurs="0" name="publisher" type="xs:string"/>
+   <xs:element minOccurs="0" name="password" type="xs:string"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="node">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="name" type="xs:string"/>
+   <xs:element minOccurs="0" name="description" type="xs:string"/>
+   <xs:element minOccurs="0" name="custodyTransferUrl" type="xs:string"/>
+   <xs:element minOccurs="0" name="inquiryUrl" type="xs:string"/>
+   <xs:element minOccurs="0" name="publishUrl" type="xs:string"/>
+   <xs:element minOccurs="0" name="securityUrl" type="xs:string"/>
+   <xs:element minOccurs="0" name="subscriptionUrl" type="xs:string"/>
+   <xs:element minOccurs="0" name="subscriptionListenerUrl" type="xs:string"/>
+   <xs:element minOccurs="0" name="juddiApiUrl" type="xs:string"/>
+   <xs:element minOccurs="0" name="proxyTransport" type="xs:string"/>
+   <xs:element minOccurs="0" name="factoryInitial" type="xs:string"/>
+   <xs:element minOccurs="0" name="factoryURLPkgs" type="xs:string"/>
+   <xs:element minOccurs="0" name="factoryNamingProvider" type="xs:string"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="clientSubscriptionInfoDetail">
+  <xs:sequence>
+   <xs:element maxOccurs="unbounded" minOccurs="0" name="clientSubscriptionInfo" nillable="true" type="tns:clientSubscriptionInfo"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="save_clerkInfo">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" name="clerk" type="tns:clerk"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="clerkDetail">
+  <xs:sequence>
+   <xs:element maxOccurs="unbounded" minOccurs="0" name="clerk" nillable="true" type="tns:clerk"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="save_noodeInfo">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" name="node" type="tns:node"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="nodeDetail">
+  <xs:sequence>
+   <xs:element maxOccurs="unbounded" minOccurs="0" name="node" nillable="true" type="tns:node"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="syncSubscription">
+  <xs:sequence>
+   <xs:element minOccurs="0" name="authInfo" type="xs:string"/>
+   <xs:element maxOccurs="unbounded" minOccurs="0" name="list" nillable="true" type="ns3:get_subscriptionResults"/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="syncSubscriptionDetail">
+  <xs:sequence>
+   <xs:element maxOccurs="unbounded" minOccurs="0" name="list" nillable="true" type="ns3:subscriptionResultsList"/>
+  </xs:sequence>
+ </xs:complexType>
+</xs:schema>


Property changes on: labs/jbossesb/branches/JBESB_4_7_CP/product/rosetta/war/resources/WEB-INF/wsdl/juddi_api_v3.xsd
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:keywords
   + Rev Date
Name: svn:eol-style
   + native



More information about the jboss-svn-commits mailing list