Security Issue with Azure

I need my application to run in FullTrust mode, so I added this line to my web / config file: I also changed the .csdef filr file to include NativeCodeExecution.

But when I want to run my application (which works without problems as a standard Asp.Net web application), I get the following message: "Role events did not fire for the allowed time. Try again. In order to encounter this behavior, try disabling development. "

And the following line in the event seen in the event viewer:
Exception message: this configuration section cannot be used along this path. This occurs when a site administrator has blocked access to this section using from an inherited configuration file. (C: \ dev \ azure \ Server \ bin \ Debug \ Server.csx \ role \ AzureServer \ web.config line 91) [this is the line where the trust level is set]

Any advice is appreciated.

BTW: I start in windows7 window

+4
source share
1 answer

I think we solved this on the Windows Azure forum, but you just need to set enableNativeCodeExecution = "true" (and not set in web.config).

+2
source

All Articles