Hi folks,

I'd like to be able to get a sample of what
should be provided to a document/literal
web service that I want Apache Axis to invoke
as a client.

For example, given the WSDL located at:
http://www.webservicex.net/stockquote.asmx?WSDL,
I'd like to be able to generate the following:

POST /stockquote.asmx HTTP/1.1
Host: www.webservicex.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.webserviceX.NET/GetQuote";

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
  <soap:Body>
    <GetQuote xmlns="http://www.webserviceX.NET/";>
      <symbol>string</symbol>
    </GetQuote>
  </soap:Body>

Regards,
Rajesh


Regards,
Rajesh



Reply via email to