. > > I want to know whether I've to send the whole XML request in the SOAP > request and same in the case of XML response also.Generally we'll format a > SOAP request with the service to be called and with the required > parameters. > But here I want to send the whole XML request/response as a SOAP > request/response. > Is there any way to do that.
The first one is rpc-style and the second one(the one which u want) is document style. In the document style, you can send plain xml inside the body of the soap envelope. If you are using Apache soap-2.2, read about writing message server/clients in the documentation there. santosh.
