Communication with wcf service on https with windows workflow -
i using windows workflow , need connect wcf service on https using security mode username.
i have used send activity , able call wcf service on http not sure can provide credentials connect https service.
web.config
<bindings> <webhttpbinding> <binding name="crossdomain" crossdomainscriptaccessenabled="true"/> </webhttpbinding> <wshttpbinding> <binding name="x" closetimeout="01:00:00" opentimeout="01:00:00" receivetimeout="01:00:00" sendtimeout="01:00:00" maxbufferpoolsize="2147483647" maxreceivedmessagesize="2147483647"> <readerquotas maxdepth="64" maxstringcontentlength="2147483647" maxarraylength="2147483647"/> <security mode="transportwithmessagecredential"> <message establishsecuritycontext="true" clientcredentialtype="username"/> </security> </binding> </wshttpbinding> <netmsmqbinding> <binding name="netmsmqbinding_default" exactlyonce="false"> <security mode="none"> </security> </binding> <binding name="netmsmqbinding_transactional" exactlyonce="true" maxretrycycles="10" retrycycledelay="00:00:10" receiveerrorhandling="move" receiveretrycount="10"> <security mode="none"> </security> </binding>
Comments
Post a Comment