Questions tagged «endpoint»

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,所以这也不是问题。 有什么线索吗?

7
什么是Web服务端点?
假设我的Web服务位于,http://localhost:8080/foo/mywebservice而WSDL位于http://localhost:8080/foo/mywebservice?wsdl。 是http://localhost:8080/foo/mywebservice端点,即它与我的Web服务的URI相同还是在SOAP消息的接收和解组位置? 您能给我解释一下它的含义和目的吗?



10
内容类型text / xml;服务不支持charset = utf-8
我对WCF服务有问题。我有一个控制台应用程序,不需要使用app.config就可以使用该服务,因此必须通过代码设置端点等。我确实有对svc的服务引用,但不能使用app.config。这是我的代码: BasicHttpBinding binding = new BasicHttpBinding(); EndpointAddress address = new EndpointAddress("http://localhost:8731/WcfServicio/MiServicio"); MiServicioClient svc = new MiServicioClient(binding, address); object ob = svc.PaisesObtener(); 在我执行的最后一行,svc.PaisesObtener()我得到了错误: Content Type text/xml; charset=utf-8 was not supported by service http://localhost:8731/WcfServicio/MiServicio. The client and service bindings may be mismatched.
74 wcf  endpoint 
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.