Tagged Questions
The soaphttpclientprotocol tag has no wiki summary.
14
votes
4answers
4k views
Slow SoapHttpClientProtocol constructor
I'm doing some experiments with Microsoft Dynamics CRM. You interact with it through web services and I have added a Web Reference to my project. The web service interface is very rich, and the ...
7
votes
2answers
768 views
How do I configure a C# web service client to send HTTP request header and body in parallel?
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 ...
3
votes
2answers
3k views
How to turn off certificate revocation for a WCF service's client?
How can I turn off certificate revocation for a WCF service's client?
The client proxy was generated by wsdl.exe and inherits SoapHttpClientProtocol.
1
vote
1answer
71 views
Modifying SOAP requests with GetWebRequest
I am trying to dynamically modify XML data in SOAP requests to ASMX services.
I overrided GetWebRequest() method in SoapHttpClientProtocol class in order to read and modify XML data that the ...
1
vote
2answers
258 views
SoapHttpClientProtocol log response xml
For a couple of days we have problem with our app. We use SoapHttpClientProtocol in order to invoke java mbeans. This basically makes a call to a java webservice to invoke methods.
Our problem is ...
1
vote
0answers
387 views
Extending SoapHttpClientProtocol to correct faulty server Content-Length
Recently I got the need to access a web service created using SOAP::Lite. It's really messy to use since there's no WSDL, it doesn't return reasonable datatypes etc. so I started out using the ...
0
votes
1answer
509 views
adding http headers in call to SoapHttpClient service
I have to consume a service provided by one of our partners. I was given little direction, but was told the security was to be PasswordDigest. I looked it up and immediatly saw lots of references to ...
0
votes
2answers
507 views
How to set HTTP Headers from client class inherited from SoapHttpClientProtocol
I'm using a class MyClass inherited from SoapHttpClientProtocol (auto-generated in my project by creating a WebReference from a .wsdl file, representing a service).
Before calling a "WebMethod" of ...
0
votes
1answer
178 views
SoapHttpClientProtocol throws NameResolutionFailure, not ProxyNameResolutionFailure
SoapHttpClientProtocol throws a WebException with status NameResolutionFailure when the proxy name is invalid. How then can I tell if it's the proxy or the destination that is in err?
I'd rather not ...
0
votes
1answer
489 views
SoapHttpClientProtocol caches proxy credentials?
I've noticed in .NET4 that the SoapHttpClientProtocol appears to cache proxy credentials. Does anybody know if this is true, and how to refresh this cache? If my users change their credentials I would ...
0
votes
1answer
320 views
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 ...
0
votes
1answer
794 views
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 ...