Doug Schaible wrote:

Good Evening All!

Does Axis provide a way for you to specify the entire SOAP body? Or the entire SOAP Envelope?

With Axis2, you can. If you want to give the whole envelope, use operation client interface. If you want to give just the payload inside the SOAP body, use service client interface.

Samisa...

Thanks,

Doug

For Example:

POST /SSOEnterprise/webservice/sso.asmx HTTP/1.1

Host: 127.0.0.1 <http://127.0.0.1>

Content-Type: text/xml; charset=utf-8

Content-Length: length

SOAPAction: "http://WebServices.SSO/Login";

<?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>

    ////////////////////////////////////////////////////

    //                                                               //

    // Specify everything that is in here! //

// //
    //////////////////////////////////////////////////

  </soap:Body>

</soap:Envelope


--
Samisa Abeysinghe : http://www.bloglines.com/blog/samisa


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to