iis - Can I disable "require certificate" on a single service in an app pool? -


i have iis-7 app pool publicly available ssl "require client certificates" enabled. need stand new wcf service in same project/website need disable client certificate requirement on page, in order application-level authentication. possible?

try configuration in web.config

<location path="relative_path_to_service.svc">     <system.webserver>         <security>             <access sslflags="ssl" />         </security>     </system.webserver> </location> 

you might need modify applicationhost.config this:

<section name="access" overridemodedefault="allow" /> 

it in c:\windows\system32\inetsrv\config directory. have not tried wcf worked in mvc application wanted set subpage require certificate mode rest of application remained ssl only.


Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -