My 'DataConnectionString' was setup @ the '.
cscfg'
file, moving it to the web.config resolved the problem as U have mentioned, however, for sessions I an using Azure Blob tables by specifying a custom 'sessionState' provider, the custom provider attributes ARE SPECIFIED in the '.
cscfg' file,
eg. <Setting name="allowInsecureRemoteEndpoints" value="true" />, since role is not loaded I have had to add these to the web.config as-well, and thus, I have added '/configuration/sessionState/providers/add/@allowInsecureRemoteEndpoints' attr,
this worked great, however, when I have added '/configuration/sessionState/providers/add/@mediaContainerName' website startup failed with '
Unrecognized
attribute: mediaContainerName', this, is specific to the mediaContainerName attr, are there any pre-defined set of attrs supported by the '/configuration/sessionState/providers/add' node of a custom sessionState provider ? why does my web site
fails to load ?
Nadav Rubinstein, See my Blog @
http://www.sophin.com