问题标签 [webrole]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
webrole - 静态变量值在 webrole 中丢失
如果我尝试获取 WebRole.x 值,它是 0,即使它在 OnStart 方法中被初始化为 5。这怎么可能?
azure - Azure - 从多个 Web 角色项目开始时出错
如果我的应用程序中有多个 webroles(项目,而不是实例),我会收到此错误:(我只有在附加 Web 角色时才会收到它。它可以很好地处理我想要的尽可能多的工作角色项目)
微软视觉工作室
适用于 Microsoft Visual Studio 的 Windows Azure 工具
将调试器附加到角色实例“deployment(21).CloudPOC.WebRoleToHostDataService.0”的 URL“http://127.0.0.1:5100/”的 IIS 工作进程时出错。无法在 Web 服务器上开始调试。Web 服务器配置不正确。有关常见配置错误,请参阅帮助。在调试器之外运行网页可能会提供更多信息。
单击帮助以获取更多信息。
好的
这里有什么问题?我看不懂,我需要一个webservice项目!
c# - Windows Azure - 无法创建角色入口点
我正在将 ASP .NET 2.0 网站迁移到 WebRole(ASP.NET 4.0 和 VS2010)。创建新的 Web 角色后,我将所有文件和文件夹从网站移动到 WebRole,然后引用所有需要的 dll。我独立构建和运行网络角色,一切正常,没有问题。但是当我构建并运行 WindowsAzureProject 时,出现以下错误
和状态“操作已取消”
我需要几天时间才能解决,但什么也没找到。我确实将所有参考 dll 的“复制本地”设置为 true,但它也不起作用。我只是认为 spring.core 和 spring.aop 导致了错误,但我不知道如何调试和捕捉它崩溃的地方
在这种情况下请帮助我。非常感谢,对不起我糟糕的英语
php - 如何使用 Eclipse 启用 WindowsAzure 远程桌面
使用 Eclipse 启用 WindowsAzure 远程桌面的最简单方法是什么?我使用 WindowsAzure4e 插件开发 PHP WebRole。
编辑:
我想我发现了一些东西:http: //blogs.msdn.com/b/jimoneil/archive/2010/12/29/azure-home-part-13-remote-desktop-configuration.aspx
我试试看。
EDIT2:它奏效了。另请参阅此链接。
windows - 如何在 Windows Azure 中运行 F# 应用程序?
我有一个项目需要我用 F# 编写一个库管理系统并使用 Windows Azure 进行开发。我对云概念很陌生,我不知道下一步该做什么。有没有办法使用 Web 表单来实现它?如果你能帮助我完成我必须采取的步骤,我可以研究它们并学习。
visual-studio-2010 - 使用 Azure Compute Emulator 调试角色实例的问题,“/”应用程序中的服务器错误
我为 webRole 创建了一个新的通知服务我在 web.config 中定义了该服务
但是当我尝试调试并启动一个新的 webrole 实例时,该服务部署在 ASP.net 服务器而不是计算模拟器中。我不知道为什么它会这样,并且在启动新实例时根本没有使用 web.config。
wcf - 如何转换 WCF REST 4.0 服务使其在 Azure Web 角色中运行?
我在 Studio 2010 下的 4.0 中编写了一个独立的 WCF REST 服务,但我决定将它托管在 Azure 而不是 Amazon AWS 下。有没有一种简单的方法可以转换它,或者我需要做什么才能让它在 Azure 的 Web 角色下运行?我在 Studio 中创建了一个空白 Web 角色项目,但 WCF 的结构似乎完全不同。
azure - 使用 C# 配置 IIS 处理程序映射
我正在尝试将 PHP 应用程序部署到 azure web cgi 角色。我相信我正确设置了我的 web.config 和 web.roleconfig。因为当我远程到机器时,我手动将 IIS 中的快速 cgi 处理程序设置为相同的值。有用。但是,部署包后就不起作用了,即使值是一样的!我必须手动将其重置为相同的值!听起来怪怪的?
所以我想在角色启动事件中编写一段代码来重置映射。有人知道如何在 C# 中做到这一点吗?
谢谢
asp.net-mvc-3 - VWD 2010 中的 mvc 3 天蓝色 webrole
我想在我的 Azure 项目中添加一个 MVC 3 Webrole。但是当我从“添加新的 Web 角色”中添加对话框时,我无法在可视化 Web 开发人员中找到 mvc3 模板。对于 mvc 项目,只有 mvc 2 Web 角色可用。我有 vwd 2010 的最新版本和更新(上周刚刚安装),还安装了 mvc 3 工具包。
configuration - Azure : can we check if a setting exists before trying to read it?
I currently use RoleEnvironment.GetConfigurationSettingValue(propertyName)
to get the value of a setting defined in my WebRole config file (csdef + cscfg). Ok, sounds right.
This works well if the setting exists but failed with an Exception if the setting is not defined in the csdef and the cscfg.
I'm migrating an existing app to Azure which has many configuration settings in web.config. In my code, to read a setting value, I d'like to test : if it exists in the webRole config (csdef + cscfg) I read it from here, otherwise I read it with ConfigurationManager from web.config. This would prevent to migrate all settings from my web.config and allow to custom one when the app is already deployed.
Is there a way to do this ?
I don't want to encapsulate the GetConfigurationSettingValue
in a try/catch (and read from web.config if I enter the catch) because it's really an ugly way (and mostly it's not performance effective !).
Thanks !