iis - Where can I find ISAPI-DLL entry in ApplicationHost.config file -
i need verify applicationhost.config
file iis configuration website, programmatically. here reading applicationhost.config
file , making sure configuration exists per website needs. facing problem while verifying 'edit feature permissions'
isapi-dll under 'handler mapping'
. when change feature permission isapi-dll execute
not getting updated value in applicationhost.config
file. please me on ?
attached screenshot
i solved problem. looking in wrong file. iis made changes in web.config
file of application folder. validate whether execute
permission given isapi-dll handler read attribute accesspolicy
of node handlers
below sample xml.
<handlers accesspolicy="read, execute, script"> <remove name="isapi-dll" /> <add name="isapi-dll" path="*.dll" verb="*" modules="isapimodule" scriptprocessor="d:\software\_webneo_sql_sample_site_1\rest\ttmrestsrv.dll" resourcetype="file" requireaccess="execute" allowpathinfo="true" precondition="bitness32" /> </handlers>
Comments
Post a Comment