Fix the Exception “SetConfigurationSettingPublisher needs to be called before FromConfigurationSetting can be used”

Posted by ybbest on YBBest See other posts from YBBest or by ybbest
Published on Thu, 30 Jun 2011 12:36:55 +0000 Indexed on 2011/06/30 16:32 UTC
Read the original article Hit count: 205

Filed under:
|

When you are getting the following exception in your Azure development , you need to run the CloudStorageAccount.SetConfigurationSettingPublisher before retriving any settings information.

To fix the exception, you need to add the following code before retrieving any settings information.


CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
{
string connectionString;
if (RoleEnvironment.IsAvailable)
{
connectionString = RoleEnvironment.GetConfigurationSettingValue(configName);
}
else
{
connectionString = ConfigurationManager.AppSettings[configName];
}
configSetter(connectionString);
});


© YBBest or respective owner

Related posts about Azure

Related posts about My Handy References