After a lot of testing with web interface 5.0, it turned out that it was extremely slow to populate applications via our Access Gateway, especially after a reboot of the Web Interface server or IISReset.
It seems that the issue is caused by CRL check to Verisign and if the web server does not have permission to go out to the internet. CTX117273
The fix : Disable this check via ASP config file
(ASPNET.CONFIG or APP.CONFIG)
< ?xml version="1.0" encoding="utf-8" ?>
< configuration >
< runtime >
< generatePublisherEvidence enabled="false"/ >
< /runtime >
< /configuration >
< ?xml version="1.0" encoding="utf-8" ?>
< configuration >
< runtime >
< generatePublisherEvidence enabled="false"/ >
< /runtime >
< /configuration >
While your at it, make your access console go faster with a similar fix for it.CTX120115
Create a file in c:\windows\system32\ called mmc.exe.config
< ?xml version="1.0" encoding="utf-8"? >
< configuration >
< runtime >
< generatePublisherEvidence enabled="false" / >
< /runtime >
< /configuration >
Microsoft link regarding this issue.
http://support.microsoft.com/default.aspx/kb/936707
< ?xml version="1.0" encoding="utf-8"? >
< configuration >
< runtime >
< generatePublisherEvidence enabled="false" / >
< /runtime >
< /configuration >
Microsoft link regarding this issue.
http://support.microsoft.com/default.aspx/kb/936707