We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Description: A C# implementation of the OpenID Authentication protocol
Homepage: http://dotnetopenid.googlecode.com
Clone URL: git://github.com/AArnott/dotnetopenid.git
AArnott (author)
Sat May 24 21:59:32 -0700 2008
commit  cc17a51aaded83c308ba5535e9b36b93b0d02964
tree    8912adfb92fecc2cb11c9f75aaca31be0d2edc78
parent  952770454739b7a11c8fcfe2a2b240335cc66050
dotnetopenid / doc / WebFarms.htm
100644 28 lines (27 sloc) 1.135 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Notes on implementing DotNetOpenId on web farms</title>
</head>
<body>
  <h3>
    Non-ASP.NET web servers</h3>
  <p>
    DotNetOpenId works without being a part of an ASP.NET web site.&nbsp; The
    ASP.NET controls may not be used in this context, but the programmatic access to
    the OpenIdProvider and OpenIdRelyingParty classes will work correctly if you
    call the method overloads that do not require a current ASP.NET context.&nbsp;
    The xml doc comments indicate which methods require an ASP.NET context and which
    methods may be used without one.</p>
  <h3>
    Proxy servers</h3>
  <p>
    If your web servers need to use proxy servers to make outbound requests, you
    will need to configure your .NET AppDomain to default to the proxy server you
    require so that DotNetOpenId will use it.&nbsp;
  </p>
  <p>
    To set the default web proxy, set the System.Net.WebRequest.DefaultWebProxy
    property.</p>
</body>
</html>