I am investigating an existing system that relies on SOAP messages to be passed between the various executables. I am trying to replace one of those applications with one of my own, and looking at the documentation, I am running into a difficulty.
I haven't worked with SOAP prior to this and am not sure what tools to use to accomplish this task, nor even what keywords I should be searching for. What I need to do is to be able to create a SOAP message that looks like this:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/1999/XMLSchema"
> <SOAP-ENV:Body xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <GetSpecialList xmlns="SpecialManagerAPI"/> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
And, I need to send it via TCP to the local IP (127.0.0.1) port 1234 and get responses from it. How do I create above message and what is an easy way to send it?