当我添加“>>>>到我的网络角色定义并尝试部署,它无法启动

发布于 2024-10-12 23:00:55 字数 509 浏览 2 评论 0 原文

当我将“”添加到 ServiceDefinition.csdef 时,它在发布时无法启动:

<WebRole name="xxx" vmsize="Small" enableNativeCodeExecution="true">
    <Runtime executionContext="elevated" />
<Sites>...

一切都消失了。需要添加它以在 Azure SDK 1.3 中指定计算机密钥,如下所述:http: //msdn.microsoft.com/en-us/library/gg494983.aspx

还有其他人遇到过这个吗?

在管理员权限下运行会导致其他代码崩溃吗?当我使用 RDP 时,在本地主机上运行时发现的错误与此无关,但当删除此运行时行时,它的代码可以工作。

When I add "" to my ServiceDefinition.csdef, it fails to start when publishing:

<WebRole name="xxx" vmsize="Small" enableNativeCodeExecution="true">
    <Runtime executionContext="elevated" />
<Sites>...

Everything works with it gone. Need to add it to specify machine key in Azure SDK 1.3, as described here: http://msdn.microsoft.com/en-us/library/gg494983.aspx

Anyone else run into this?

Would running under admin privileges cause other code to break? When I RDP in, the error I find when I run on localhost is not related to this, but it's code that works when this runtime line is removed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾城°AllureLove 2024-10-19 23:00:55

我刚刚检查了服务定义架构和运行时
WebRole 中不存在元素。

事实上确实如此。

 <WebRole name="<web-role-name>" vmsize="[ExtraSmall|Small|Medium|Large|ExtraLarge]" enableNativeCodeExecution="[true|false]">
   ...
   <Runtime executionContext="[limited|elevated]">

I just checked the Service Definition Schema and the Runtime
element does not exist inside WebRole.

Actually it does.

 <WebRole name="<web-role-name>" vmsize="[ExtraSmall|Small|Medium|Large|ExtraLarge]" enableNativeCodeExecution="[true|false]">
   ...
   <Runtime executionContext="[limited|elevated]">
我做我的改变 2024-10-19 23:00:55

我刚刚检查了 服务定义架构,并且内部不存在运行时元素Web角色。

如果您想要完全信任,您应该转到您的 CloudService 项目属性并将其设置在那里。但我真的不知道你是否需要它来指定机器密钥。

此致

I just checked the Service Definition Schema and the Runtime element does not exist inside WebRole.

If you would like to have Full Trust, you should go to yor CloudService project properties and set it there. But i really don't know if you need that to specify the machine key.

Best regards

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文