I configured google logins for our application. However I need your help yet again, I can get it to work locally but after I deploy it doesn’t.
To give you a little bit more detail what I do to deploy is:
I configure in the Relying party applications a new instance with a link to
Everything else I keep the same.
Then I go to my webconfig in my application and change the realm code:
<audienceUris>
<add value="http://127.0.0.1:81/" />
<add value="http://blabla.cloudapp.net/" />
</audienceUris>
<federatedAuthentication>
<wsFederation passiveRedirectEnabled="true" issuer="https://blabla.accesscontrol.windows.net/v2/wsfederation" realm=" http://blabla.cloudapp.net/" requireHttps="false" />
<cookieHandler requireSsl="false" />
</federatedAuthentication>
I set up all my references as copy to local and I run publish. If I now go to my cloudsite I notice that no authentication actually happens. It seems it is just skipped
I tried to log in the VM and see if anything happens but I don't see anything. If i go to the web.config located on the VM i only see this code inside:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<machineKey decryption="AES" decryptionKey="FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" validation="SHA1" validationKey="FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" />
</system.web>
</configuration>
(keys are not the originals ones of course)
Are there any other options I could persue? I don't really get it
authenticationandauthorizationsections of your web.config! Withinauthorizationyou must have<deny users="?" />andauthenticationis typically set tononeby the Identity and Access tool. Also provide versions of Visual Studio, .NET Framework used and osFamily configured for the WebRole. – astaykov Feb 11 at 6:30