You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrf-dev@ws.apache.org by sc...@apache.org on 2005/05/23 20:43:13 UTC

svn commit: r177999 - in /incubator/apollo/trunk/src: java/org/apache/ws/addressing/ site/content/tutorial/ site/content/tutorial/method_impls/ site/content/tutorial/requests/

Author: scamp
Date: Mon May 23 11:43:10 2005
New Revision: 177999

URL: http://svn.apache.org/viewcvs?rev=177999&view=rev
Log:
fixes for the dist

Removed:
    incubator/apollo/trunk/src/site/content/tutorial/method_impls/filesys_service_methods.txt
Modified:
    incubator/apollo/trunk/src/java/org/apache/ws/addressing/XmlBeansEndpointReference.java
    incubator/apollo/trunk/src/site/content/tutorial/build.xml
    incubator/apollo/trunk/src/site/content/tutorial/requests/Destroy.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/GetMultipleResourceProperties.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_invalidProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_validProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_allProps.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_oneProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_deleteCommentProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_insertCommentProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateBackupFreqProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateCommentProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateFsckPassNumProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateMountPointProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateOptionsProp.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/SetTerminationTime.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/Sysprops_QueryResourceProperties_allProps.soap
    incubator/apollo/trunk/src/site/content/tutorial/requests/_TEMPLATE.soap

Modified: incubator/apollo/trunk/src/java/org/apache/ws/addressing/XmlBeansEndpointReference.java
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/java/org/apache/ws/addressing/XmlBeansEndpointReference.java?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/java/org/apache/ws/addressing/XmlBeansEndpointReference.java (original)
+++ incubator/apollo/trunk/src/java/org/apache/ws/addressing/XmlBeansEndpointReference.java Mon May 23 11:43:10 2005
@@ -205,6 +205,33 @@
 
    }
 
+    public XmlObject getXmlObject( String namespace  )
+    {
+       XmlObject epr = null;
+
+       if(namespace != null && m_address != null)
+       {
+           if(org.apache.ws.addressing.v2003_03.AddressingConstants.NSURI_ADDRESSING_SCHEMA.equals(namespace))
+           {
+               EndpointReferenceType endpointReferenceType = build2003_03_EPR();
+
+               m_xmlObjectEPR = endpointReferenceType;
+               epr = endpointReferenceType;
+           }
+           else if(org.apache.ws.addressing.v2004_08_10.AddressingConstants.NSURI_ADDRESSING_SCHEMA.equals(namespace))
+           {
+               org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType endpointReferenceType = build2004_08_EPR();
+
+               m_xmlObjectEPR = endpointReferenceType;
+               epr = endpointReferenceType;
+           }
+       }
+
+       return epr;
+
+    }
+
+
     private EndpointReferenceType build2003_03_EPR()
     {
         EndpointReferenceType endpointReferenceType = EndpointReferenceType.Factory.newInstance();
@@ -327,4 +354,6 @@
     {
         m_resourceKey = resourceKey;
     }
+
+
 }

Modified: incubator/apollo/trunk/src/site/content/tutorial/build.xml
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/build.xml?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/build.xml (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/build.xml Mon May 23 11:43:10 2005
@@ -59,7 +59,43 @@
      </wsdl2Java>
           
      <delete dir="${tmp.dir}" />
-               
+     
+     <!-- Copy Filesystem Requests,Callbacks, Method_IMPLS and SOAP Client to generated dir -->
+     <copy file="soapclient.xml" todir="${out.dir}/filesystem" />
+     <mkdir dir="${out.dir}/filesystem/src/java/example/filesystem" />
+     <copy todir="${out.dir}/filesystem/src/java/example/filesystem" >
+       <fileset dir="${basedir}/src/example/filesystem">
+             <include name="**/*.java"/>
+    	</fileset>
+     </copy>
+     
+     <mkdir dir="${out.dir}/filesystem/requests" />
+     <copy todir="${out.dir}/filesystem/requests" >
+       <fileset dir="${basedir}/requests">
+     	<exclude name="**/Sysprops*.soap"/>
+       </fileset>
+     </copy>
+     
+     <mkdir dir="${out.dir}/filesystem/method_impls" />
+     <copy todir="${out.dir}/filesystem/method_impls">
+       <fileset dir="${basedir}/method_impls" includes="**/filesys*"/>                
+     </copy>
+     
+     
+     <!-- Copy Sysprops Requests, Method_IMPLS and SOAP Client to generated dir -->
+     <copy file="soapclient.xml" todir="${out.dir}/sysprops" />
+     
+     <mkdir dir="${out.dir}/sysprops/requests" />
+     <copy todir="${out.dir}/sysprops/requests" >
+       <fileset dir="${basedir}/requests" includes="**/Sysprops*.soap **/_TEM*.soap"/>
+     </copy>     
+     
+     <mkdir dir="${out.dir}/sysprops/method_impls" />
+     <copy todir="${out.dir}/sysprops/method_impls">
+       <fileset dir="${basedir}/method_impls" includes="**/sysprops*"/>                
+     </copy>
+          
+     
    </target>   
       
    <target name="usage">      

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/Destroy.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/Destroy.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/Destroy.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/Destroy.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/GetMultipleResourceProperties.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/GetMultipleResourceProperties.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/GetMultipleResourceProperties.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/GetMultipleResourceProperties.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_invalidProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_invalidProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_invalidProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_invalidProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/GetResourcePropertyRequest</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_validProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_validProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_validProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/GetResourceProperty_validProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/GetResourcePropertyRequest</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_allProps.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_allProps.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_allProps.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_allProps.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_oneProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_oneProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_oneProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/QueryResourceProperties_oneProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_deleteCommentProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_deleteCommentProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_deleteCommentProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_deleteCommentProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_insertCommentProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_insertCommentProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_insertCommentProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_insertCommentProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateBackupFreqProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateBackupFreqProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateBackupFreqProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateBackupFreqProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateCommentProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateCommentProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateCommentProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateCommentProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateFsckPassNumProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateFsckPassNumProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateFsckPassNumProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateFsckPassNumProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateMountPointProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateMountPointProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateMountPointProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateMountPointProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateOptionsProp.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateOptionsProp.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateOptionsProp.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetResourceProperties_updateOptionsProp.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/SetTerminationTime.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/SetTerminationTime.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/SetTerminationTime.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/SetTerminationTime.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/SetTerminationTimeRequest</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/Sysprops_QueryResourceProperties_allProps.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/Sysprops_QueryResourceProperties_allProps.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/Sysprops_QueryResourceProperties_allProps.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/Sysprops_QueryResourceProperties_allProps.soap Mon May 23 11:43:10 2005
@@ -4,8 +4,8 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/sysprops</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/sysprops/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <!-- Empty ResourceID is a Singleton  -->
-      <sys:ResourceID mustUnderstand="1"></sys:ResourceID>
+      <!-- Empty ResourceIdentifier is a Singleton  -->
+      <sys:ResourceIdentifier mustUnderstand="1"></sys:ResourceIdentifier>
    </Header>
 
    <Body>

Modified: incubator/apollo/trunk/src/site/content/tutorial/requests/_TEMPLATE.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/requests/_TEMPLATE.soap?rev=177999&r1=177998&r2=177999&view=diff
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/requests/_TEMPLATE.soap (original)
+++ incubator/apollo/trunk/src/site/content/tutorial/requests/_TEMPLATE.soap Mon May 23 11:43:10 2005
@@ -4,7 +4,7 @@
    <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
       <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/filesystem</wsa:To>
       <wsa:Action mustUnderstand="1">http://ws.apache.org/resource/example/filesystem/FileSystemPortType/yourWsdlRequestName</wsa:Action>
-      <fs:ResourceID mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceID>
+      <fs:ResourceIdentifier mustUnderstand="1">/dev/vg00/lvol1</fs:ResourceIdentifier>
    </Header>
 
    <Body>



---------------------------------------------------------------------
To unsubscribe, e-mail: apollo-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: apollo-dev-help@ws.apache.org