diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-21 17:05:42 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-21 17:05:42 -0700 |
commit | 5cefdbebc31194d9d8279c60abccdba2bece6745 (patch) | |
tree | 66613535d08050d892005ac4624e81e2c8f09257 /samples/OpenIdRelyingPartyWebForms | |
parent | 53c2a138a3761dd88c8272e01ea5aece709b91f2 (diff) | |
download | DotNetOpenAuth-5cefdbebc31194d9d8279c60abccdba2bece6745.zip DotNetOpenAuth-5cefdbebc31194d9d8279c60abccdba2bece6745.tar.gz DotNetOpenAuth-5cefdbebc31194d9d8279c60abccdba2bece6745.tar.bz2 |
Moved behaviors into their own RP vs. OP namespaces.
Diffstat (limited to 'samples/OpenIdRelyingPartyWebForms')
-rw-r--r-- | samples/OpenIdRelyingPartyWebForms/Web.config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OpenIdRelyingPartyWebForms/Web.config b/samples/OpenIdRelyingPartyWebForms/Web.config index 2c6a1dc..f34b171 100644 --- a/samples/OpenIdRelyingPartyWebForms/Web.config +++ b/samples/OpenIdRelyingPartyWebForms/Web.config @@ -42,8 +42,8 @@ <behaviors> <!-- The following OPTIONAL behavior allows RPs to use SREG only, but be compatible with OPs that use Attribute Exchange (in various formats). --> - <add type="DotNetOpenAuth.OpenId.Behaviors.AXFetchAsSregRelyingPartyTransform, DotNetOpenAuth.OpenId.RelyingParty" /> - <!--<add type="DotNetOpenAuth.OpenId.Behaviors.GsaIcamRelyingPartyProfile, DotNetOpenAuth.OpenId.RelyingParty" />--> + <add type="DotNetOpenAuth.OpenId.RelyingParty.Behaviors.AXFetchAsSregTransform, DotNetOpenAuth.OpenId.RelyingParty" /> + <!--<add type="DotNetOpenAuth.OpenId.RelyingParty.Behaviors.GsaIcamProfile, DotNetOpenAuth.OpenId.RelyingParty" />--> </behaviors> <!-- Uncomment the following to activate the sample custom store. --> <!--<store type="OpenIdRelyingPartyWebForms.Code.CustomStore, OpenIdRelyingPartyWebForms" />--> |