You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by Bochnak Filip <Fi...@edmb.debis.com> on 2004/05/14 16:11:50 UTC

soapenv and SOAP-ENV ??? in C++/java

hi all

I´m trying to implment a test c++ client on Tomcat. (sample: getQuote)
I can´t see any result on my client. Why ????
Is it because of SOAP-ENV and soapenv ? What I´m doing wrong.
thx for your help

FROM CLIENT:
<?xml version='1.0' encoding='utf-8' ?>
   <SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <SOAP-ENV:Body>
         <ns1:getQuote xmlns:ns1="urn:xmltoday-delayed-quotes">
            <symbol xsi:type="xsd:string">XXX</symbol>
         </ns1:getQuote>
      </SOAP-ENV:Body>
   </SOAP-ENV:Envelope>

FROM SERVER:
<?xml version='1.0' encoding='utf-8' ?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
      <soapenv:Body>  
	<ns1:getQuoteResponse
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1="urn:xmltoday-  	delayed-quotes">         
    <ns1:getQuoteReturn xsi:type="xsd:float">55.25</ns1:getQuoteReturn>
    <ns1:getQuoteResponse>
</soapenv:Body>
   </soapenv:Envelope> 0