I'm using DotNetOpenID to provide relying party OpenID support for our website. All external requests have to be brokered via a proxy server, and I'm looking for a way to tell DotNetOpenID to use this proxy. I know I can set up a global proxy config in web.config, but I currently only want this to apply to the calls made to the OpenID provider during authentication. Is this possible?
相关问题
- Can't configure nginx as a proxy for tomcat wi
- R connect via proxy in Ubuntu
- Java - How to get annotations from Proxy class?
- What is the actual purpose of designing a proxy cl
- How to access the Internet through Proxy in C#
相关文章
- Angular CLI: Proxy websocket with proxy.conf.json
- OSX proxy issue with homebrew install
- What to do with extra HTTP header from proxy?
- Firebug console error HTTP 407 Proxy Authenticatio
- How to set a proxy in rubys net/http?
- Bypass the proxy using TcpClient
- Are there any tools to build ASMX proxies from ser
- C# combining GeckoFX + Tor.NET libraries
I ended up solving this by using specifying a proxy in
web.config
, with a bypasslist specified so only external requests would use the proxy server: