Hi,
I just installed VS 2005 on my machine, but my online help cannot be accessed. I keep getting the message: "The request failed with Http Status 407. Proxy authentication required". IE on my machine does have proxy authentication. Is there a fix for this
Thanks,
Arshad

Internet Connection in VS 2005
bpmerkel
It begins to happen when you change the domain password.
arsonist
To answer Jeremy's question: when you execute a search in dexplore you have these seperate zone result panes (MSDN Online, Code Zone Community, etc..) it's under these pane headers the 407 appears.
Also when you go into dexplore->options->help->online->download provider list it will give you a "unable to retrieve resource from the msdn service" msgbox.
Cheers,
Thomas
ntradek
Where does this message appear Is it in a WebBrowser upon trying to view a help page, or is it in the Search toolwindow (Help->Search)
Thanks,
Jeremy Jones
Ann aaa
Dana
Chubby Bunny
Jat the great
parthasarathy
floriflori
This should work; VS should be picking up the IE settings. There is no way in VS for you to supply any credentials for authenticating with the proxy.
We would like to know more about the problem you're seeing. If you could answer Jeremy's questions too, that would be very helpful.
Thanks!
A_Bomb
There's another case that I didn't cover in my post above: If your proxy uses another authentication scheme, such as LDAP-based authentication on a Unix box, then I'm afraid there's no guaranteed way to make VS 2005 Help work. The client (VS 2005) needs to be designed to present a credentials dialog to the user when the proxy requests credentials, but this UI doesn't exist in VS 2005.
Some users have reported success with this workaround:
1. Start Visual Studio
2. On the View menu, click Other Windows -> Web Browser
3. A prompt for authentication should appear as the integrated web browser attempts to navigate to a page on the Internet. Provide a valid username and password.
4. The Start Page and online Help in VS may now function normally.
If you're in this situation, give this workaround a try and let us know whether it works.
Thanks!
ak8888
This gets past the authentication error, but I now get a new one
"The request failed with HTTP status 405: Method Not Allowed"
Any ideas
G.T.
thanks.
Glenn Blinckmann
Internet access at work is via an MS ISA Server that requires authentication. IE set up to use config script and works correctly.
VS2005 (RC) help cannot get online saying it needs proxy authentication.
Has anyone been able to get around this issue
Incidentally, the Start Page in VS 2005 works fine and updates with the latest news!!
Georgesl
Sorry for taking so long to get back to everyone on this. If your proxy uses Windows authentication, the VS 2005 Help system fails to properly provide credentials to the proxy. You can work around this using a config file change -- details below. In this case, the Start Page will already be able to download its content correctly, as in Martin's case above.
To have VS 2005 send Windows credentials to your Internet proxy, make the following addition to the application configuration file:< xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
< xml version ="1.0" >
<configuration>
<startup>
<supportedRuntime version="v2.0.50727" safemode="true"/>
<requiredRuntime version="v2.0.50727" safemode="true"/>
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="PublicAssemblies;PrivateAssemblies"/>
<dependentAssembly>
<assemblyIdentity name="EnvDTE" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="7.0.3300.0" newVersion="8.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.net>
<settings>
<ipv6 enabled="true" />
</settings>
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy bypassonlocal="True" proxyaddress="http://yourproxy"/>
</defaultProxy>
</system.net>
</configuration>
The file in question is Program Files\Common Files\Microsoft Shared\Help 8\dexplore.exe.config, and it should already be on your system. You need to edit the file, inserting the part that is highlighted above, and substituting the correct proxyaddress for your network. The useDefaultCredentials attribute is the key.
Note that if you're using the integrated help viewer (help displayed in the devenv.exe shell, instead of in DExplorer), then the above changes need to be made to Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe.config instead.
Thanks!
Ngetal