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
Post a Comment