You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pubscribe-commits@ws.apache.org by sc...@apache.org on 2005/07/28 21:58:20 UTC

svn commit: r225860 - in /webservices/pubscribe/trunk/src: examples/broker/ examples/filesystem/requests/ webapp/WEB-INF/classes/

Author: scamp
Date: Thu Jul 28 12:58:16 2005
New Revision: 225860

URL: http://svn.apache.org/viewcvs?rev=225860&view=rev
Log: (empty)

Added:
    webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_Get.soap
    webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_GetMetadata.soap
Modified:
    webservices/pubscribe/trunk/src/examples/broker/jndi-config.xml
    webservices/pubscribe/trunk/src/examples/broker/jndi-config_wse.xml
    webservices/pubscribe/trunk/src/webapp/WEB-INF/classes/jndi-config.xml

Modified: webservices/pubscribe/trunk/src/examples/broker/jndi-config.xml
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/broker/jndi-config.xml?rev=225860&r1=225859&r2=225860&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/examples/broker/jndi-config.xml (original)
+++ webservices/pubscribe/trunk/src/examples/broker/jndi-config.xml Thu Jul 28 12:58:16 2005
@@ -86,6 +86,15 @@
             </parameter>
          </resourceParams>
       </resource>
+      
+      <resource name="metadata" type="org.apache.ws.util.jndi.tools.MetadataConfigImpl">
+         <metadataConfig>
+            <!-- classpath -->
+            <metadata dialect="http://schemas.xmlsoap.org/wsdl/" identifier="http://ws.apache.org/notification/base/service/SubscriptionManager/wsdl">
+               <location>wsdl/SubscriptionManager.wsdl</location>
+            </metadata>                  
+         </metadataConfig>
+       </resource>      
    </service>
 
    <service name="NotificationProducer">

Modified: webservices/pubscribe/trunk/src/examples/broker/jndi-config_wse.xml
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/broker/jndi-config_wse.xml?rev=225860&r1=225859&r2=225860&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/examples/broker/jndi-config_wse.xml (original)
+++ webservices/pubscribe/trunk/src/examples/broker/jndi-config_wse.xml Thu Jul 28 12:58:16 2005
@@ -78,6 +78,14 @@
             </parameter>
          </resourceParams>
       </resource>
+      <resource name="metadata" type="org.apache.ws.util.jndi.tools.MetadataConfigImpl">
+         <metadataConfig>
+            <!-- classpath -->
+            <metadata dialect="http://schemas.xmlsoap.org/wsdl/" identifier="http://ws.apache.org/notification/base/service/SubscriptionManager/wsdl">
+               <location>wsdl/SubscriptionManager.wsdl</location>
+            </metadata>                  
+         </metadataConfig>
+       </resource>      
    </service>
 
    <service name="NotificationProducer">

Added: webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_Get.soap
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_Get.soap?rev=225860&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_Get.soap (added)
+++ webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_Get.soap Thu Jul 28 12:58:16 2005
@@ -0,0 +1,15 @@
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/" 
+          xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex"
+          xmlns:sub="http://ws.apache.org/notification/base/service/SubscriptionManager">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/foobar</wsa:To>
+      <wsa:Action mustUnderstand="1">http://schemas.xmlsoap.org/ws/2004/09/mex/Get/Request</wsa:Action>
+      <sub:ResourceIdentifier mustUnderstand="1">52082a10-ff9f-11d9-b386-b35a385b29cd</sub:ResourceIdentifier>      
+   </Header>
+
+   <Body>
+      <!-- no body needed.  Action defines request for wsx -->
+   </Body>
+
+</Envelope>

Added: webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_GetMetadata.soap
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_GetMetadata.soap?rev=225860&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_GetMetadata.soap (added)
+++ webservices/pubscribe/trunk/src/examples/filesystem/requests/WSX_GetMetadata.soap Thu Jul 28 12:58:16 2005
@@ -0,0 +1,15 @@
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/" 
+          xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex"
+          xmlns:sub="http://ws.apache.org/notification/base/service/SubscriptionManager">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/foobar</wsa:To>
+      <wsa:Action mustUnderstand="1">http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Request</wsa:Action> 
+      <sub:ResourceIdentifier mustUnderstand="1">52082a10-ff9f-11d9-b386-b35a385b29cd</sub:ResourceIdentifier>
+   </Header>
+
+   <Body>
+      <wsx:GetMetadata />
+   </Body>
+
+</Envelope>

Modified: webservices/pubscribe/trunk/src/webapp/WEB-INF/classes/jndi-config.xml
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/webapp/WEB-INF/classes/jndi-config.xml?rev=225860&r1=225859&r2=225860&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/webapp/WEB-INF/classes/jndi-config.xml (original)
+++ webservices/pubscribe/trunk/src/webapp/WEB-INF/classes/jndi-config.xml Thu Jul 28 12:58:16 2005
@@ -94,10 +94,10 @@
                <name>resourceIdentifierReferenceParameterName</name>
                <value>{http://ws.apache.org/notification/base/service/SubscriptionManager}ResourceIdentifier</value>
             </parameter>
-         </resourceParams>
+         </resourceParams>         
       </resource>
       
-      <resource name="metadata" type="org.apache.ws.util.jndi.tools.MetadataConfig">
+      <resource name="metadata" type="org.apache.ws.util.jndi.tools.MetadataConfigImpl">
          <metadataConfig>
             <!-- classpath -->
             <metadata dialect="http://schemas.xmlsoap.org/wsdl/" identifier="http://ws.apache.org/notification/base/service/SubscriptionManager/wsdl">
@@ -105,7 +105,6 @@
             </metadata>                  
          </metadataConfig>
        </resource>
-      
    </service>
 
 </jndiConfig>