>Is there a way to send a SOAP request (invoke) (via HTTP) in a TCP
>socket?
I don't think there is any other possibility. SOAP by definition uses
HTTP protocol, and HTTP always runs over TCP/IP every time I have seen
it.
At least in any ordinary situation.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.
Mike Schilling - 01 Oct 2005 01:52 GMT
>>Is there a way to send a SOAP request (invoke) (via HTTP) in a TCP
>>socket?
>
> I don't think there is any other possibility. SOAP by definition uses
> HTTP protocol,
Not quite. The most common implementation of SOAP is SOAP-over-HTTP, but
SOAP can also be run over JMS, SMTP, MSMQ, etc.
> and HTTP always runs over TCP/IP every time I have seen
> it.
Remember SOAP is just a simple xml based messaging protocol.. it has nothing
to do with HTTP or other network protocol.
As long as you send a valid soap XML message and the socket endpoint sends
you back a valid soap XML message. You are doing SOAP messaging.
Thus you can open any socket connection and pump raw soap xml down it. Of
course the socket endpoint must be listening and expecting the data
otherwise its not going to work.
> Hi,
>
[quoted text clipped - 11 lines]
> Thanks.
> -o--