DOes SOAP supports TCP transport protocol?

  • Thread starter Thread starter deba
  • Start date Start date
D

deba

From the documentation of SOAP it seems SOAP supports both
HTTP and TCP protocol.I did not find much documentation
how to use TCP as transport layer in SOAP?
Does the SOAP toolkit 2.0 supports using TCP as transport
layer?
My reqmt is to make SOAP request without the help of HTTP.
I have already built up COM objects which are served over
DCOM to many clients.Can I serve the same objects over
SOAP.

Deba.
 
If you want to use ASP.NET, then no, it is not possible.
ASP.NET is bound to HTTP.

But, you can build webservices that are exposed via TCP in .NET. You can do
it with .NET Remoting - using the SOAP formatter and the TCP channel. The
client will of course need to support SOAP over TCP. Not all do. (.NET
does) Also you get SOAP section-5 encoding, versus XML Schema. This may
or may not be a problem.

check this article:
http://msdn.microsoft.com/webservic.../library/en-us/dnbda/html/bdadotnetarch16.asp

Why is HTTP not welcome?

-Dino
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top