In one of our applications we use sql server reporing services. It lasts 21 seconds before the website responds. Our firewall blocks access to AKAMAI.com.
Probably there is a relation.
We saw similar delays in a .net application. We eliminated the delay in the .net applcation by modifying the check for publishers certificate revocation in internet explorer.
I presume that the akamai is accessed by reporting services for a similar purpose, since akamai hosts a lot of certificate information.
Doen anyone know if I can disable certificate checking (akamai access) in our reporting services?
The reporting services version we use : 9.0.242.0
sql server verion : 2005.90.5057.0
I included the reportserver config file (ReportingServicesService.exe.config)
<configuration><configSections><section name="RStrace" type="Microsoft.ReportingServices.Diagnostics.RSTraceSectionHandler,Microsoft.ReportingServices.Diagnostics" /></configSections><system.diagnostics><switches><add name="DefaultTraceSwitch" value="3" /></switches></system.diagnostics><RStrace><add name="FileName" value="ReportServerService_" /><add name="FileSizeLimitMb" value="32" /><add name="KeepFilesForDays" value="14" /><add name="Prefix" value="tid, time" /><add name="TraceListeners" value="debugwindow, file" /><add name="TraceFileMode" value="unique" /><add name="Components" value="all" /></RStrace><runtime><legacyImpersonationPolicy enabled="true"/><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"><dependentAssembly><assemblyIdentity name="Microsoft.ReportingServices.Interfaces" publicKeyToken="89845dcd8080cc91" culture="neutral" /><bindingRedirect oldVersion="8.0.242.0" newVersion="9.0.242.0"/></dependentAssembly></assemblyBinding><gcServer enabled="true" /></runtime></configuration>