Hello EP,
Please see earlier post "SOAP.TCP".
Regards,
Martin Kulov
www.codeattest.com
> Is there any way to use tcp with the WebServicesClientProtocol instead
> of http?
No. It's tied to purely HTTP. Have a look at it's inheritance hierarchy:
....
System.Web.Services.Protocols.WebClientProtocol
System.Web.Services.Protocols.HttpWebClientProtocol
System.Web.Services.Protocols.SoapHttpClientProtocol
Microsoft.Web.Services2.WebServicesClientProtocol
No way to get around that.
That said, can use the following WseWsdl2.exe command line params to generate a SoapClient based proxy instead:
wsewsdl2 MyService.wsdl MyProxyDefinitions.cs
This process is documented here.
HTH,
Drew
Drew Marsh - 19 Nov 2004 19:47 GMT
I wrote:
> This process is documented here.
Woops, forgot to provide the link. Here it is:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wse/html/gxacon
wsdltosoapclienttool.asp
-Drew