I'm attempting to build a WCF client in C# to consume eMedNy's SOAP web services. The WSDL is here: https://service100.emedny.org:9047/MHService?wsdl
When I try running svcutil
I get this error:
Warning: The following Policy Assertions were not Imported:
XPath://wsdl:definitions[@targetNamespace=http://org/emedny/mhs/
]/wsdl:binding[@name='MHS']
Assertions:
<dpe:summary xmlns:dpe='http://www.datapower.com/extensions'> .. </dpe:summary>
<sp:SupportingTokens xmlns:sp='http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702'> .. </sp:SupportingTokens>
From what I've read, this has something to do with WCF's lack of support for usernameToken
with digested password.
How can I proceed to overcome this and set-up the proxy and app.config
?