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

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


Hi community
I´m posting my email to axis-user because I didn´t get any answere from the
axis-c-user mailing list.
I would really appreciate any help.
Thanks in advance Phil

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