Questions tagged «wcf-binding»

30
找不到默认端点元素
我已将代理添加到VS2008 / .NET 3.5解决方案的Web服务。构造客户端.NET时,会引发以下错误: 在ServiceModel客户端配置部分中找不到引用合同'IMySOAPWebService'的默认终结点元素。这可能是因为没有为您的应用程序找到配置文件,或者是在client元素中找不到与该协定匹配的端点元素。 搜索此错误告诉我在合同中使用完整的名称空间。这是带有完整名称空间的我的app.config: <client> <endpoint address="http://192.168.100.87:7001/soap/IMySOAPWebService" binding="basicHttpBinding" bindingConfiguration="IMySOAPWebServicebinding" contract="Fusion.DataExchange.Workflows.IMySOAPWebService" name="IMySOAPWebServicePort" /> </client> 我在本地运行XP(我之所以这么说是因为许多Google命中都提到了win2k3),将app.config复制到app.exe.config,所以这也不是问题。 有什么线索吗?



22
这可能是由于服务端点绑定未使用HTTP协议
我的WCF服务在本地计算机上运行良好。我将其放在服务器上,并且收到以下错误: 收到对http://xx.xx.x.xx:8200 / Services / WCFClient.svc的HTTP响应时发生错误 。这可能是由于服务端点绑定未使用HTTP协议。这也可能是由于服务器终止了HTTP请求上下文(可能是由于服务关闭了)。请参阅服务器日志以了解更多详细信息。 我已经进入了网址中的服务,并且可以正常工作。我为该函数所做的所有事情都是将一个字符串返回一个图像名称,因此传递的数据并不多。我已经跟踪了日志,它给了我相同的信息。这是我的客户端配置: <binding name="basicHttpBinding_IWCFClient" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"> <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> <security mode="None"> <transport clientCredentialType="None" proxyCredentialType="None" realm="" /> <message clientCredentialType="UserName" algorithmSuite="Default" /> </security> </binding> <endpoint name="basicHttpBinding_IWCFClient" address="http://localhost:4295/Services/WCFClient.svc" binding="basicHttpBinding" bindingConfiguration="basicHttpBinding_IWCFClient" behaviorConfiguration="WCFGraphicManagementTool.Services.ClientBehavior" contract="WCFClient.IWCFClient" /> …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.