Editing WebConfig for Customer Portal Solution !
-
Saturday, January 12, 2013 1:48 PM
Dears,
This is in deployment customer portal for Online CRM 2011 with live authentication On Premises .
I'm trying to find out which are the sections i really need in Web.config file while developing a customer portal for CRM 2011. Can anyone provide me what i change these Bold Code in Web.config file? change for what ?! and how to get thumbprint number ?!
<microsoft.identityModel>
<service>
<audienceUris>
<add value="http://contoso.cloudapp.net/"/>
</audienceUris>
<federatedAuthentication>
<wsFederation passiveRedirectEnabled="false" issuer="https://contoso.accesscontrol.windows.net/v2/wsfederation" realm="http://contoso.cloudapp.net/" requireHttps="false"/>
<cookieHandler requireSsl="false"/>
</federatedAuthentication>
<issuerNameRegistry type="Microsoft.IdentityModel.Tokens.ConfigurationBasedIssuerNameRegistry, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<trustedIssuers>
<add thumbprint="0000000000000000000000000000000000000000" name="https://contoso.accesscontrol.windows.net/"/>
</trustedIssuers>
</issuerNameRegistry>
</service>
</microsoft.identityModel>
Thanks,
- Edited by Fady M Samy Saturday, January 12, 2013 5:25 PM
- Edited by Fady M Samy Saturday, January 12, 2013 5:39 PM
- Edited by Fady M Samy Monday, January 14, 2013 8:02 AM
- Edited by Fady M Samy Monday, January 14, 2013 8:04 AM
All Replies
-
Sunday, January 13, 2013 9:54 AM
Did you go through the "Setup & Deployment guide" and "Portal Configuration Guide - Windows Azure ACS Authentication" of Customer Portal. Follow the steps mentioned in those two docs as is and you will be able to get to know what values you need to specify in the web.config. I also followed them as is and was able to deploy customer portal successfully.
http://contoso.cloudapp.net/- Realm URI of your Relying Party Application
issuer=https://contoso.accesscontrol.windows.net/v2/wsfederation - contoso is the namespace which we create in the ACS under which your Relying Party Application will be associated
thumbprint="0000000000000000000000000000000000000000" - thumbprint of x.509 certificate
In "Portal Configuration Guide - Windows Azure ACS Authentication" document under "Gathering Portal Settings" section you can find answers to your questions.
Post your queries related Customer Portal in the following forum so that they will be answered quickly:
http://social.microsoft.com/Forums/en-US/crmlabs/threads
Vikranth http://howto-mscrm.blogspot.com "Please Mark it as answer if it helps in resolving your query"
- Proposed As Answer by vicky_smag (Vikranth Pandiri) Sunday, January 13, 2013 9:55 AM