Single WCF service with two basicHttpBindings https endpoints -


please help!,

first of all, on same site can defined 2 https bindings?

i use basichttpbinding,

in single wcf service add 2 https endpoints, 1 security:

<security mode="transport">      <transport clientcredentialtype="certificate"                                          proxycredentialtype="none"/>          </security>   <endpoint address="https://xxx.svc" /> default port 443  

other:

<security mode="transportwithmessagecredential">       <transport clientcredentialtype="windows"              proxycredentialtype="none" realm=""/>            </security>  <endpoint address="https://yyy:4430/xxx.svc" /> 

in servicehostingenvironment add prefix in baseaddressprefixfilters

<add prefix="https://xxx.svc"/> 

and when try browsing service got following error: ssl settings service 'sslrequirecert' not match of iis 'ssl, sslmapcert'.

i tried combination on iis (7.0) ssl settings, , had add bindings port 443 , 4430


Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -