Add support for wsHTTPBinding
Looking for wsdl's and endpoints to test against.
Resources:
- https://www.codeproject.com/Articles/36396/Difference-between-BasicHttpBinding-and-WsHttpBind
- https://msdn.microsoft.com/en-us/library/ms951257.aspx
- http://stackoverflow.com/questions/2650785/basichttpbinding-vs-wshttpbinding-vs-webhttpbinding
Is there a way to get this feature? Even a dirtyhack patch would help. WS: https://clients.nationalmailing.com.au/servicetest/orderservice.svc
this would also be useful for us; I'm going to investigate which specific methods we need.
this is the binding type we're trying to connect to, if that's helpful:
<wsHttpBinding>
<binding name="WSHttpBinding_ISecureDirectorySearch">
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="None" />
<message clientCredentialType="Certificate" />
</security>
</binding>
</wsHttpBinding>
When I make a request using C# it looks like there's a request that happens before my actual request that gets a security token.
Is this implemented yet ?
Looking for wsdl's and endpoints to test against.
Resources:
- https://www.codeproject.com/Articles/36396/Difference-between-BasicHttpBinding-and-WsHttpBind
- https://msdn.microsoft.com/en-us/library/ms951257.aspx
- http://stackoverflow.com/questions/2650785/basichttpbinding-vs-wshttpbinding-vs-webhttpbinding
In the issue https://github.com/mvantellingen/python-zeep/issues/914
I attached an exe which is a .net console embedding a self-hosted SOAP/WCF wsHttpBinding service.
That may help you to test with zeep.
If you're having any troubles executing my exe, I am happy to help.
Best Regards, Nicolas
@nicostubi Have you found any alternative ways to solve this problem?
Hi! I have a similar problem. Have someone found any alternative to this with Python?