diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-17 07:40:19 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-17 07:40:19 -0700 |
commit | 12f899e678cd5fdafcd9fac84fadcf91029db88c (patch) | |
tree | df7aa91df22832757958eaf6e80de32699ddf904 /samples/OpenIdProviderWebForms | |
parent | 0a8227a503dc39c1d14790dd31d9aaf1b00e81cb (diff) | |
download | DotNetOpenAuth-12f899e678cd5fdafcd9fac84fadcf91029db88c.zip DotNetOpenAuth-12f899e678cd5fdafcd9fac84fadcf91029db88c.tar.gz DotNetOpenAuth-12f899e678cd5fdafcd9fac84fadcf91029db88c.tar.bz2 |
Added OpenID pluggable behaviors support, including a sample PPID generator.
Diffstat (limited to 'samples/OpenIdProviderWebForms')
-rw-r--r-- | samples/OpenIdProviderWebForms/Web.config | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/samples/OpenIdProviderWebForms/Web.config b/samples/OpenIdProviderWebForms/Web.config index 7626751..c3c7ef9 100644 --- a/samples/OpenIdProviderWebForms/Web.config +++ b/samples/OpenIdProviderWebForms/Web.config @@ -47,6 +47,13 @@ <dotNetOpenAuth> <openid> <provider> + <security requireSsl="false" /> + <behaviors> + <!-- Behaviors activate themselves automatically for individual matching requests. + The first one in this list to match an incoming request "owns" the request. If no + profile matches, the default behavior is assumed. --> + <!--<add type="DotNetOpenAuth.OpenId.Behaviors.PpidGeneration, DotNetOpenAuth" />--> + </behaviors> <!-- Uncomment the following to activate the sample custom store. --> <!--<store type="OpenIdProviderWebForms.Code.CustomStore, OpenIdProviderWebForms" />--> </provider> |