Martin Hinshelwood

A Scottish software developer: SSW Solution Architect & Microsoft Visual Studio Team System MVP
posts - 392, comments - 528, trackbacks - 57

My Links

News

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.




TwitterCounter for @hinshelm



Locations of visitors to this page

Subscribe

Personal

Twitter












Tag Cloud

Article Categories

Archives

Post Categories

Image Galleries

Blogs I read

Blogs of Friends

Personal

Projects

VSTS

Proxy server settings for SharePoint 2007

Well this was fun... All the of how to connect through a proxy from SharePoint are missing a crucial piece of information!

<system.net>
   <defaultProxy>
      <proxy usesystemdefault = "false" proxyaddress="http://proxyservername" bypassonlocal="true" />
   </defaultProxy>
</system.net>  

 

This is the accepted route, with an exception to e added to the proxy to use anonymous authentication...

But is you use:

<defaultProxy useDefaultCredentials="true">
  <proxy usesystemdefault="false" proxyaddress=http://proxyservername" bypassonlocal="true" />
  <bypasslist>
    <add address="[a-z]+\.domain\.biz" />
    <add address="[a-z]+\.domain2\.biz" />
  </bypasslist>
</defaultProxy>

The required bit of which is the useDefaultCredentials parameter that passes the logged on users credentials on to the proxy server.

smile_regular Now all I need to do is get the double-hop authentication to work...

Print | posted on Wednesday, October 24, 2007 12:10 PM | Filed Under [ Sharepoint ]

Feedback

Gravatar

# re: Proxy server settings for SharePoint 2007

ahh, the total lack of documentation for sharepoint strikes again eh?
7/23/2008 10:41 PM | Craig
Gravatar

# re: Proxy server settings for SharePoint 2007

Thanks, adding the useDefaultCredentials helped me!
9/23/2008 1:28 PM | Brian Edwards
Gravatar

# re: Proxy server settings for SharePoint 2007

Thank you for sharing this great piece of info. I've been struggling to figure what is wrong with my MOSS setup for a few days now!
11/26/2008 10:33 PM | Panayotis Tzedakis
Comments have been closed on this topic.

Powered by: