diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-16 19:22:11 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-16 19:22:11 -0800 |
commit | dbc33d404f55e5d76e5d6d5f9db8dad0b9747e3c (patch) | |
tree | 58f37a4347b45039c6514a96f7b8b13c9e3361e5 /projecttemplates/WebFormsRelyingParty | |
parent | df01707b59fea996765348c95831ed74313004e7 (diff) | |
download | DotNetOpenAuth-dbc33d404f55e5d76e5d6d5f9db8dad0b9747e3c.zip DotNetOpenAuth-dbc33d404f55e5d76e5d6d5f9db8dad0b9747e3c.tar.gz DotNetOpenAuth-dbc33d404f55e5d76e5d6d5f9db8dad0b9747e3c.tar.bz2 |
Fixed web.config file bug in project template for IIS hosting.
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty')
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Web.config | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Web.config b/projecttemplates/WebFormsRelyingParty/Web.config index e02090d..abaeb07 100644 --- a/projecttemplates/WebFormsRelyingParty/Web.config +++ b/projecttemplates/WebFormsRelyingParty/Web.config @@ -155,7 +155,8 @@ <modules> <remove name="ScriptModule" /> <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> - <add name="OAuthAuthenticationModule" type="WebFormsRelyingParty.Code.OAuthAuthenticationModule" /> + <add name="OAuthAuthenticationModule" type="RelyingPartyLogic.OAuthAuthenticationModule, RelyingPartyLogic" /> + <add name="Database" type="RelyingPartyLogic.Database, RelyingPartyLogic"/> </modules> <handlers> <remove name="WebServiceHandlerFactory-Integrated" /> |