我有一个包含Bing Translate API的MVC3 Web应用程序。在模拟器上一切正常,但是当我将它部署到Windows Azure时,我一次又一次地遇到这个问题(我重试了两次以上):
Instance 0 of role Website is busy
Instance 0 of role Website is cycling
在骑自行车很长时间后停止。 在门户网站中,我看到了这样的信息:
Waiting for role to start... System is initializing
我已选择" Add deployable assemblies
",并检查所有引用Copy Local = true
是否为true
我还检查了连接字符串到我的帐户存储,我将我的项目设置为通过帐户存储在云上工作。
这里是Bing Translate API的web.config
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_LanguageService" closeTimeout="00:25:00"
openTimeout="00:25:00" receiveTimeout="00:25:00" sendTimeout="00:25:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://api.microsofttranslator.com/V2/soap.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_LanguageService"
contract="BingTranslator.LanguageService" name="BasicHttpBinding_LanguageService" />
</client>
</system.serviceModel>
我已经搜索了很长时间,但对我来说没有任何作用。请给我你的帮助。 最诚挚的问候
答案 0 :(得分:0)
我可以了解如何将这些错误转换为某些信息:
案例一:您的状态是在Web角色中循环:
这可能是一个特定于角色的问题,您最好的选择是RDP到您的实例并查找一些内容,例如Azure诊断日志中的潜在异常,事件日志,Azure BootStrapper日志,IIS配置器日志等。这将帮助您除了可以从Azure存储中获取有关您潜在问题的所有详细信息的Azure诊断日志之外,还能比其他任何方法更快地找到问题。
案例二:您的状态是在整机中循环:
这可能是机器特定的问题,其中VM本身正在循环,这是联系Windows Azure支持团队为您进行调查的好选择。