Thursday, January 21, 2010

Proxy Authehtication Issues With SQL Server Reporting Services

It is always a mess when try to deploy a report on a Secured Proxy Enabled Network. We faced this issues many time and every time the answer was same just add the following lines of code in your development studio config file or "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe.config"

<system.net>
<settings>
<ipv6 enabled="true">
</ipv6>
<defaultproxy enabled="true" usedefaultcredentials="true">
<proxy bypassonlocal="True" proxyaddress="http://dhsproxy.hsa.org">
</proxy>
</defaultproxy>

</settings></system.net>


Just replace the proxyaddress to your proxy address and everything will work like a charm...
to get the proxy address goto

IE->Tools->Internet Options->Connections(tab)->Click LanSettings button-> Copy text from Address text box.

Code is Published with the help of www.blogcrowds.com

Cheerz
Jaweed Sarfraz

No comments:

Post a Comment