Well this was fun… All the examples 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.
Now all I need to do is get the double-hop authentication to work…
Technorati Tags: SP 2007 SP 2010 SharePoint
Smart Classifications
Each classification [Concepts, Categories, & Tags] was assigned using AI-powered semantic analysis and scored across relevance, depth, and alignment. Final decisions? Still human. Always traceable. Hover to see how it applies.
What to read next
Detecting agile theatre with real delivery signals
Why Most Companies Operating Models Fail in Dynamic Markets
A concise comparison of Predictive and Adaptive Operating Models, explaining why traditional structures fail in dynamic markets and how …
Don’t Manage Dependencies, Remove Them
Explains why dependencies are a sign of poor system design and outlines steps to eliminate them by aligning teams, clarifying ownership, and …
The Estimation Trap: How Tracking Accuracy Undermines Trust, Flow, and Value in Software Delivery
Tracking estimation accuracy in software delivery leads to mistrust, fear, and distorted behaviours. Focus on customer value, flow, and …
Flow of Value vs Flow of Work – Misnomer or Useful Shorthand?
Compares “flow of value” and “flow of work” in Kanban, explaining why only validated outcomes count as value and stressing the need for …
Why Outsourcing DevOps Fails, and How Real Engineering Excellence Starts With Your Team
Avoid DevOps vendor lock-in, discover how true engineering excellence starts with partnership, not outsourcing. Ready to transform your …