What started as a nice "dip my toe into Web Services" has turned into Alice's rabbit hole.
I am trying to receive an XML document over http,
The document is formatted as:
<request>
<pair/>
...
</request>
I tried SOAP, when I tried to catch it in a webOperation.createDOCStyle("procRequest","request",FormatIn,FormatOut),
receive:
WS-DEBUG (Receive)
C
WS-DEBUG END
WS-DEBUG (HTTP ERROR)
Class: HTTPServerConnection::extractMethod()
Msg: Not HTTP Procotol
Return -8 from com.WebServiceEngine.ProcessServices:x
WS-DEBUG END
So I believe this should be catching a tcp based request instead of an http formatted one. Can someone point me in the right direction for documents/examples for catching tcprequests as opposed to httprequests.
Yes, I am in way over my head, but that is what makes I.T so fun.