Sunday, August 16, 2015

A Membership Provider has not been configured correctly. Check the web.config settings for this web application. FBA configuration AX dynamics 2012

while configuring claim base login for dynamics ax 2012 with sharepoint 2013, I configured everything, but while going to Site Settings > FBA User Management , I got the below error

"A Membership Provider has not been configured correctly. Check the web.config settings for this web application."

but I thoroughly checked all my configs are correct, including the membership and permissions in DB as well.

finally I found that my app pools ( Ep site and STS site) were running in different accounts. hence causing this issue.
finally I make them all same and all were OK.

Regards,
Yes.Sudhanshu

Wednesday, August 12, 2015

WARNING: No deployment found in service: in Windows Azure

hi while setting a static IP to one of my Azure VM, I got the below warning message.
"WARNING: No deployment found in service: <service name>"
however I was able to do so earlier.
then I realise that I have multiple subscriptions in same login.
so this is issue of subscription.
so before you use the command you must set your subscription for which you wan to work.
get the list of subscriptions you have
Get-AzureSubscription | Select SubscriptionName

now set to the desired subscription
Select-AzureSubscription -SubscriptionName "<Your-Desired-Subscription-Name-Here>"
then use your command.

Regards,
yes.sudhanshu