The URL http://localhost/UDSM_R11_WebService/mod_gsoap.dll fails to load and shows the following error message:
HTTP Error 500.19 - Internal Server Error. The requested page cannot be accessed because the related configuration data for the page is invalid.
In addition, you receive an error when opening the Default Web Site ISAPI Filters applet.
Filename:
\\?\C:\Windows\System32\inetsrv\config\applicationHost.config
Line number: 771
Error: Cannot add duplicate collection entry of type 'filter' with
unique key attribute 'name' set to 'UDSM_R11_WebConsole'
CA Client Automation - All Versions
<isapiFilters>
<filter name="ASP.Net_2.0.50727-64" path="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="bitness64" />
<filter name="ASP.Net_2.0.50727.0" path="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="bitness32" />
<filter name="UDSM_R11_WebConsole" path="E:\Program Files (x86)\CA\DSM\Web Console\jakarta\isapi_redirect.dll" enabled="true" enableCache="true" />
</isapiFilters>
<filter name="UDSM_R11_WebConsole" path="E:\Program Files (x86)\CA\DSM\Web Console\jakarta\isapi_redirect.dll" enabled="true" enableCache="true" />
Remove the second instance of the duplicate; in this case, the one teat exists outside the <isapiFilters>...</isapiFilters> section and save.
The finished section will look like the following:
<isapiFilters>
<filter name="ASP.Net_2.0.50727-64" path="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="bitness64" />
<filter name="ASP.Net_2.0.50727.0" path="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="bitness32" />
<filter name="UDSM_R11_WebConsole" path="E:\Program Files (x86)\CA\DSM\Web Console\jakarta\isapi_redirect.dll" enabled="true" enableCache="true" />
</isapiFilters>
From the command prompt, run the following:
caf stop Tomcat
iisrestart
caf start Tomcat
Try the URL again and the console should now be working properly.