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/02/22 17:24:59 UTC

svn commit: r154869 - incubator/apollo/trunk/src/site/content/example/requests

Author: scamp
Date: Tue Feb 22 08:24:53 2005
New Revision: 154869

URL: http://svn.apache.org/viewcvs?view=rev&rev=154869
Log:
changed extensions

Added:
    incubator/apollo/trunk/src/site/content/example/requests/CreatePrinter.soap
    incubator/apollo/trunk/src/site/content/example/requests/Create_Job.soap
    incubator/apollo/trunk/src/site/content/example/requests/DeleteAcceptingJobs.soap
    incubator/apollo/trunk/src/site/content/example/requests/Destroy_Job.soap
    incubator/apollo/trunk/src/site/content/example/requests/GetMulti.soap
    incubator/apollo/trunk/src/site/content/example/requests/GetPrinterPropertiesDoc.soap
    incubator/apollo/trunk/src/site/content/example/requests/GetPropertiesDoc.soap
    incubator/apollo/trunk/src/site/content/example/requests/GetQueuedJobCount.soap
    incubator/apollo/trunk/src/site/content/example/requests/InsertProps.soap
    incubator/apollo/trunk/src/site/content/example/requests/PrintJobRequest.soap
    incubator/apollo/trunk/src/site/content/example/requests/SendDocument.soap
    incubator/apollo/trunk/src/site/content/example/requests/Set_InsertJobHoldOvernight.soap
    incubator/apollo/trunk/src/site/content/example/requests/Set_JobTermination.soap
    incubator/apollo/trunk/src/site/content/example/requests/Set_MultiDelete.soap
    incubator/apollo/trunk/src/site/content/example/requests/Set_MultiInsertJobHold.soap
    incubator/apollo/trunk/src/site/content/example/requests/Set_Should_Fail.soap
    incubator/apollo/trunk/src/site/content/example/requests/Set_UpdateDocFormat.soap
    incubator/apollo/trunk/src/site/content/example/requests/UpdateProps.soap
Removed:
    incubator/apollo/trunk/src/site/content/example/requests/CreatePrinter.txt
    incubator/apollo/trunk/src/site/content/example/requests/Create_Job.txt
    incubator/apollo/trunk/src/site/content/example/requests/DeleteAcceptingJobs.txt
    incubator/apollo/trunk/src/site/content/example/requests/Destroy_Job.txt
    incubator/apollo/trunk/src/site/content/example/requests/GetMulti.txt
    incubator/apollo/trunk/src/site/content/example/requests/GetPrinterPropertiesDoc.txt
    incubator/apollo/trunk/src/site/content/example/requests/GetPropertiesDoc.txt
    incubator/apollo/trunk/src/site/content/example/requests/GetQueuedJobCount.txt
    incubator/apollo/trunk/src/site/content/example/requests/InsertProps.txt
    incubator/apollo/trunk/src/site/content/example/requests/PrintJobRequest.txt
    incubator/apollo/trunk/src/site/content/example/requests/SendDocument.txt
    incubator/apollo/trunk/src/site/content/example/requests/Set_InsertJobHoldOvernight.txt
    incubator/apollo/trunk/src/site/content/example/requests/Set_JobTermination.txt
    incubator/apollo/trunk/src/site/content/example/requests/Set_MultiDelete.txt
    incubator/apollo/trunk/src/site/content/example/requests/Set_MultiInsertJobHold.txt
    incubator/apollo/trunk/src/site/content/example/requests/Set_Should_Fail.txt
    incubator/apollo/trunk/src/site/content/example/requests/Set_UpdateDocFormat.txt
    incubator/apollo/trunk/src/site/content/example/requests/UpdateProps.txt

Added: incubator/apollo/trunk/src/site/content/example/requests/CreatePrinter.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/CreatePrinter.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/CreatePrinter.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/CreatePrinter.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,15 @@
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/" 
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>      
+   </Header>
+
+   <Body>
+      <wsrf-pr:CreatePrinterRequest/>
+   </Body>
+
+</Envelope>
+

Added: incubator/apollo/trunk/src/site/content/example/requests/Create_Job.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Create_Job.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Create_Job.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Create_Job.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,21 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>      
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+     <Create_JobRequest>
+       <job_name>My Second Printer Job</job_name>
+     </Create_JobRequest>
+   </Body>
+
+</Envelope>
+

Added: incubator/apollo/trunk/src/site/content/example/requests/DeleteAcceptingJobs.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/DeleteAcceptingJobs.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/DeleteAcceptingJobs.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/DeleteAcceptingJobs.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>    
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:DeleteResourceProperties>    
+         <wsrf-rp:Delete ResourceProperty="wsrf-pr:printer_is_accepting_jobs"/>             
+     </wsrf-rp:DeleteResourceProperties>
+   </Body>
+
+</Envelope>
+

Added: incubator/apollo/trunk/src/site/content/example/requests/Destroy_Job.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Destroy_Job.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Destroy_Job.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Destroy_Job.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,18 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>      
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Job1</fs:ResourceID>
+   </Header>
+
+   <Body>
+     <m:Destroy xmlns:m="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceLifetime-1.2-draft-04.xsd"/>     
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/GetMulti.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/GetMulti.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/GetMulti.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/GetMulti.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,27 @@
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:GetMultipleResourceProperties 
+       xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+            
+            <wsrf-rp:ResourceProperty>
+              wsrf-pr:printer_state
+            </wsrf-rp:ResourceProperty>
+      
+            <wsrf-rp:ResourceProperty>
+              wsrf-pr:queued_job_count
+            </wsrf-rp:ResourceProperty>
+      
+       </wsrf-rp:GetMultipleResourceProperties >
+   </Body>
+
+</Envelope>
\ No newline at end of file

Added: incubator/apollo/trunk/src/site/content/example/requests/GetPrinterPropertiesDoc.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/GetPrinterPropertiesDoc.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/GetPrinterPropertiesDoc.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/GetPrinterPropertiesDoc.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,18 @@
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>  
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:GetResourcePropertyDocument/>
+   </Body>
+
+</Envelope>
+

Added: incubator/apollo/trunk/src/site/content/example/requests/GetPropertiesDoc.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/GetPropertiesDoc.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/GetPropertiesDoc.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/GetPropertiesDoc.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,24 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:QueryResourceProperties>
+          <wsrf-rp:QueryExpression 
+              Dialect="http://www.w3.org/TR/1999/REC-xpath-19991116" > 
+            contains(/*/operations_supported,"Print_Job")
+          </wsrf-rp:QueryExpression> 
+   </wsrf-rp:QueryResourceProperties> 
+   </Body>
+
+</Envelope>
+

Added: incubator/apollo/trunk/src/site/content/example/requests/GetQueuedJobCount.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/GetQueuedJobCount.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/GetQueuedJobCount.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/GetQueuedJobCount.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,19 @@
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>  
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:GetResourceProperty>
+            wsrf-pr:queued_job_count 
+      </wsrf-rp:GetResourceProperty>
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/InsertProps.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/InsertProps.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/InsertProps.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/InsertProps.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,26 @@
+
+
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>     
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:InsertResourceProperties>    
+        <wsrf-rp:Insert>
+         <wsrf-pr:printer_is_accepting_jobs>
+           true
+         </wsrf-pr:printer_is_accepting_jobs>
+        </wsrf-rp:Insert>
+    </wsrf-rp:InsertResourceProperties>
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/PrintJobRequest.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/PrintJobRequest.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/PrintJobRequest.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/PrintJobRequest.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,25 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>  
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+     <wsrf-pr:Print_JobRequest>
+       <wsrf-pr:job_name>My First Printer Job</job_name>
+       <wsrf-pr:document_format>text/plain</document_format>
+         <wsrf-pr:document_content>
+           <xsd:Base64Data>SGVsbG8gV29ybGQh</xsd:Base64Data>
+         <wsrf-pr:document_content> 
+     </wsrf-pr:Print_JobRequest>  
+   </Body>
+
+</Envelope>
+

Added: incubator/apollo/trunk/src/site/content/example/requests/SendDocument.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/SendDocument.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/SendDocument.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/SendDocument.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,28 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd"
+          xmlns:wsrf-rl="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceLifetime-1.2-draft-04.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>      
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Job1</fs:ResourceID>
+   </Header>
+
+   <Body>
+     <Send_DocumentRequest> 
+       <last_document>true</last_document>
+       <document_format>text/plain</document_format>
+       <document_content>
+        <Base64Data>
+	      Q29uZ3JhdHVsYXRpb25zLCB5b3UndmUgcmVh
+	      Y2hlZCB0aGUgZW5kIG9mIHRoZSBTY2VuYXJpbyE=
+        </Base64Data>
+       </document_content>
+     </Send_DocumentRequest>
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/Set_InsertJobHoldOvernight.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Set_InsertJobHoldOvernight.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Set_InsertJobHoldOvernight.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Set_InsertJobHoldOvernight.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,24 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:SetResourceProperties>
+         <wsrf-rp:Insert>
+           <wsrf-pr:job_hold_until_supported>
+                 Overnight
+           </wsrf-pr:job_hold_until_supported>
+         <wsrf-rp:Insert>
+     </wsrf-rp:SetResourceProperties>
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/Set_JobTermination.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Set_JobTermination.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Set_JobTermination.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Set_JobTermination.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,22 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd"
+          xmlns:wsrf-rl="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceLifetime-1.2-draft-04.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>      
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Job1</fs:ResourceID>
+   </Header>
+
+   <Body>
+    <wsrf-rl:SetTerminationTime>
+      <wsrf-rl:RequestedTerminationTime>2005-03-01T09:25:00.0Z                                                  
+      </wsrf-rl:RequestedTerminationTime>
+    </wsrf-rl:SetTerminationTime>
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/Set_MultiDelete.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Set_MultiDelete.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Set_MultiDelete.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Set_MultiDelete.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,27 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd"
+          >
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>      
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+     <wsrf-rp:SetResourceProperties>
+
+       <wsrf-rp:Delete 
+            ResourceProperty="wsrf-pr:job_hold_until_supported" />
+           
+        <wsrf-rp:Delete 
+            ResourceProperty="wsrf-pr:job_hold_until_default" />
+
+     </wsrf-rp:SetResourceProperties>
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/Set_MultiInsertJobHold.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Set_MultiInsertJobHold.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Set_MultiInsertJobHold.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Set_MultiInsertJobHold.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,31 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action> 
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:SetResourceProperties>      
+           <wsrf-rp:Insert>        
+               <wsrf-pr:job_hold_until_supported>
+                 No-Hold
+               </wsrf-pr:job_hold_until_supported>
+           </wsrf-rp:Insert>
+             
+           <wsrf-rp:Insert>
+               <wsrf-pr:job_hold_until_default>
+                 No-Hold
+               </wsrf-pr:job_hold_until_default>
+             <wsrf-rp:Insert>
+     </wsrf-rp:SetResourceProperties>
+   </Body>
+
+</Envelope>
+

Added: incubator/apollo/trunk/src/site/content/example/requests/Set_Should_Fail.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Set_Should_Fail.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Set_Should_Fail.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Set_Should_Fail.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,35 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>      
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+     <wsrf-rp:SetResourceProperties>
+       <wsrf-rp:Update>
+         <wsrf-pr:job_hold_until_supported>
+           No-Hold
+         </wsrf-pr:job_hold_until_supported>
+         <wsrf-pr:job_hold_until_supported>
+           After-9pm
+         </wsrf-pr:job_hold_until_supported>
+       <wsrf-rp:Update>
+
+       <wsrf-rp:Insert>  
+         <wsrf-pr:job_hold_until_default>
+           No-Hold
+         </wsrf-pr:job_hold_until_default>
+       </wsrf-rp:Insert>
+     </wsrf-rp:SetResourceProperties>
+   </Body>
+
+</Envelope>
+
+<!- Should Fail! -->
\ No newline at end of file

Added: incubator/apollo/trunk/src/site/content/example/requests/Set_UpdateDocFormat.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/Set_UpdateDocFormat.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/Set_UpdateDocFormat.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/Set_UpdateDocFormat.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,25 @@
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>   
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:SetResourceProperties>
+        <wsrf-rp:Update>
+           <document_format_supported>
+	    <mimeMediaType>text/plain</mimeMediaType>
+	    <mimeMediaType>application/postscript</mimeMediaType>
+           </document_format_supported>
+      </wsrf-rp:Update>
+   </wsrf-rp:SetResourceProperties>
+   </Body>
+
+</Envelope>

Added: incubator/apollo/trunk/src/site/content/example/requests/UpdateProps.soap
URL: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/example/requests/UpdateProps.soap?view=auto&rev=154869
==============================================================================
--- incubator/apollo/trunk/src/site/content/example/requests/UpdateProps.soap (added)
+++ incubator/apollo/trunk/src/site/content/example/requests/UpdateProps.soap Tue Feb 22 08:24:53 2005
@@ -0,0 +1,25 @@
+
+
+
+<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"
+	  xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/2004/11/wsrf-WS-ResourceProperties-1.2-draft-05.wsdl"
+          xmlns:wsrf-pr="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.xsd">
+
+   <Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/wsrf/services/PrinterFactory</wsa:To>
+      <wsa:Action mustUnderstand="1"></wsa:Action>  
+      <wsrf-pr-wsdl:ResourceID mustUnderstand="1" 
+            xmlns:wsrf-pr-wsdl="http://docs.oasis-open.org/wsrf/2005/01/wsrf-Interop-2.0-draft-03.wsdl">Printer1</fs:ResourceID>
+   </Header>
+
+   <Body>
+      <wsrf-rp:UpdateResourceProperties>    
+             <wsrf-rp:Update>
+	       <wsrf-pr:printer_is_accepting_jobs>
+	          true
+	       </wsrf-pr:printer_is_accepting_jobs>
+             </wsrf-rp:Update>
+       </wsrf-rp:UpdateResourceProperties>
+   </Body>
+
+</Envelope>



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