You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by du...@apache.org on 2002/09/10 19:52:16 UTC

cvs commit: xml-axis/java/samples/stock GetQuote.wsdl

dug         2002/09/10 10:52:16

  Modified:    java/samples/stock GetQuote.wsdl
  Log:
  Minor tweaks for .Net
  Submitted by:	Nick Kornweibel (kornweibel@surfeu.de)
  
  Revision  Changes    Path
  1.6       +6 -4      xml-axis/java/samples/stock/GetQuote.wsdl
  
  Index: GetQuote.wsdl
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/stock/GetQuote.wsdl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- GetQuote.wsdl	28 Aug 2002 19:22:55 -0000	1.5
  +++ GetQuote.wsdl	10 Sep 2002 17:52:16 -0000	1.6
  @@ -3,13 +3,14 @@
   <definitions name="urn:GetQuote" 
                targetNamespace="urn:xmltoday-delayed-quotes"
                xmlns:tns="urn:xmltoday-delayed-quotes"
  -             xmlns:xsd="http://www.w3.org/1999/XMLSchema"
  +             xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
                xmlns="http://schemas.xmlsoap.org/wsdl/">
   
     <!-- message declns -->
  -  <message name="testRequest">
  -    <part name="string" type="xsd:string"/>
  +  <message name="testRequest"/>
  +  <message name="testResponse">
  +    <part name="testResult" type="xsd:string"/>
     </message>
   
     <message name="GetQuoteRequest">
  @@ -27,7 +28,8 @@
         <output message="tns:GetQuoteResponse"/>
       </operation>
       <operation name="test" >
  -      <output message="tns:GetQuoteResponse"/>
  +      <input message="tns:testRequest"/>
  +      <output message="tns:testResponse"/>
       </operation>
     </portType>