soaphttpclientprotocol

How to turn off certificate revocation for a WCF service's client?

Hi, How can I turn off certificate revocation for a WCF service's client? The client proxy was generated by wsdl.exe and inherits SoapHttpClientProtocol. ...

How to implement a SoapHttpClientProtocol

Since this question tells me that SoapHttpClientProtocol is not thread safe. And, my real life testing tells me this is true, as my SoapHeader properties keep getting mixed up between calls. Is there a way to make sure that I can use this across threads and keep my properties correct? And make sure I don't run into the example given in t...

Slow SoapHttpClientProtocol Instantiation

I am encountering a well documented issue in regards to instantiating a SoapHttpClientProtocol class. My situation is similar to the question posted here: http://stackoverflow.com/questions/172095/slow-soaphttpclientprotocol-constructor A solution to the problem can be found here: http://kb.vmware.com/selfservice/microsites/search.do...

How do I configure a C# web service client to send HTTP request header and body in parallel?

Hi, I am using a traditional C# web service client generated in VS2008 .Net 3.5, inheriting from SoapHttpClientProtocol. This is connecting to a remote web service written in Java. All configuration is done in code during client initialization, and can be seen below: ServicePointManager.Expect100Continue = false; Servi...

Get underlying WebResponse from MethodInfo generated from SoapHttpClientProtocol

I've spent a while looking at this but am struggling to get any useful answers. Basically I have a SoapHttpClientProtocol that I've compiled from a WSDL previously. I then get the MethodInfo for my particular method from the clientProtocol and Invoke it using the standard Invoke method. What you get back is just the response from the ...