Tag: net.tcp

这可能是由于服务端点绑定不使用HTTP协议

我有一个WCF服务在我的本地机器上正常运行。 我把它放在服务器上,我收到以下错误: 接收到http://xx.xx.x.xx:8200 / Services / WCFClient.svc的HTTP响应时发生错误。 这可能是由于服务端点绑定不使用HTTP协议。 这也可能是由于HTTP请求上下文被服务器中止(可能是由于服务closures)。 查看服务器日志了解更多详情。] 我已经在url中的服务,它正常工作。 我所做的所有function是返回一个string的图像名称,所以传递的数据不是很多。 我已经跟踪了日志,它给了我相同的信息。 这是我的客户端configuration: <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" […]

在IIS7中启用net.tcp

我怎样才能让IIS处理net.tcp连接?