diff options
Diffstat (limited to 'samples/RelyingPartyCustomStore/Global.asax.cs')
-rw-r--r-- | samples/RelyingPartyCustomStore/Global.asax.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/samples/RelyingPartyCustomStore/Global.asax.cs b/samples/RelyingPartyCustomStore/Global.asax.cs new file mode 100644 index 0000000..b8b7593 --- /dev/null +++ b/samples/RelyingPartyCustomStore/Global.asax.cs @@ -0,0 +1,16 @@ +using System;
+using System.Collections;
+using System.Configuration;
+using System.Data;
+using System.Web;
+using System.Web.Security;
+using System.Web.SessionState;
+
+namespace RelyingPartyCustomStore {
+ public class Global : System.Web.HttpApplication {
+ public Global() {
+ // since this is a sample, and will often be used with localhost
+ DotNetOpenId.UntrustedWebRequest.WhitelistHosts.Add("localhost");
+ }
+ }
+}
\ No newline at end of file |