作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码(用于 Microsoft Translator)
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_LanguageService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01: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="TranslatorService.LanguageService" name="BasicHttpBinding_LanguageService" />
</client>
</system.serviceModel>
它在 web.config
中并且运行良好。现在我需要将一些翻译函数添加到 Azure Worker Role 中,因此出现错误 Could not find default endpoint element thatreferences Contract 'TranslatorService.LanguageService' in the ServiceModel client configuration section.这可能是因为没有找到适用于您的应用程序的配置文件,或者因为在客户端元素中找不到与此约定匹配的端点元素。
我已经找到解决方案是将上述设置放入ServiceConfiguration.cscfg
,但是如何呢?我尝试了很多位置,但都出错并且无法部署。请帮忙
最佳答案
ServiceConfiguration.cscfg只能包含 Azure 特定配置(例如实例数量、配置设置、指纹等)。
每当您需要进行常规 .NET 配置(例如 WCF)时,您都可以简单地为您的辅助角色创建一个 app.config,就像您为控制台应用程序所做的那样,然后将您的配置放入这里。请注意,如果您想将其添加到 app.config 中,问题中的示例配置并不完整。你应该把它包裹起来:
<?xml version="1.0"?>
<configuration>
...
</configuration>
关于azure - 如何将 system.serviceModel 放入 ServiceConfiguration.cscfg (Windows Azure),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11769108/
我是一名优秀的程序员,十分优秀!