http://blogs.msdn.com/b/mcsuksoldev/archive/2012/11/02/azure-access-control-services-creating-a-custom-identity-provider.aspx
http://blogs.technet.com/b/meamcs/archive/2011/12/19/securing-wcf-services-with-custom-wif-sts-a-step-by-step-guide.aspx
http://bitblits.wordpress.com/2011/08/01/implementing-windows-identity-foundation-wif-into-azure-using-appfabric-acs/
http://msdn.microsoft.com/en-us/library/gg328483.aspx
http://blogs.perficient.com/microsoft/2010/12/sign-into-sharepoint-2010-with-facebook-using-a-custom-sts/
https://github.com/manoj-kumar1/auth-against-crm-using-STS
--
Thursday, February 6, 2014
Monday, January 6, 2014
Monday, December 30, 2013
Authenticate Office 365 Users with Microsoft Dynamics CRM Online
Just for the quick note Microsoft CRM Online has been changes this day to authenticate. Below I am posting code sample that will help many of us. the code only works for CRM 2011 online and Office 365 users/.
Define Username and Password:
private const String UserName = "xxx@jaxaracrm.onmicrosoft.com";
private const String Password = "xxxxx$";
Necessary Dynamics CRM Link
http://dynamicscrm2011.wordpress.com/tag/crm-2011-add-button-ribbon/
http://dynamicscrm2011.wordpress.com/tag/adding-a-tab-to-the-existing-ribbon/
http://msdn.microsoft.com/en-us/library/gg334341.aspx
http://gotcrm.blogspot.com/2012/12/business-intelligence-for-crm-2011-data.html
http://dynamicscrm2011.wordpress.com/tag/adding-a-tab-to-the-existing-ribbon/
http://msdn.microsoft.com/en-us/library/gg334341.aspx
http://gotcrm.blogspot.com/2012/12/business-intelligence-for-crm-2011-data.html
Monday, February 11, 2013
Monday, December 31, 2012
MVC Database Migration.
Add: Connection String:
In the Package Manager Console window at the PM> prompt enter "Enable-Migrations -ContextTypeName MvcMovie.Models.MovieDBContext".
In the Package Manager Console window, enter the command "add-migration Initial" to create the initial migration.
In the Package Manager Console, enter the command "update-database" to create the database and run the Seed method.
In the Package Manager Console window at the PM> prompt enter "Enable-Migrations -ContextTypeName MvcMovie.Models.MovieDBContext".
In the Package Manager Console window, enter the command "add-migration Initial" to create the initial migration.
In the Package Manager Console, enter the command "update-database" to create the database and run the Seed method.
Subscribe to:
Posts (Atom)