gpt4 book ai didi

c# - Windows Mobile App 的 WCF 服务正在运行但我无法连接

转载 作者:太空宇宙 更新时间:2023-11-03 16:37:24 25 4
gpt4 key购买 nike

这是我第一次尝试使用 WCF,也是我的第一个 Windows Mobile 应用程序。我一直在关注本教程:http://msdn.microsoft.com/en-us/library/cc488004(v=vs.90).aspx

我已经创建了一个 WCF 服务,弹出 WCF 服务主机对话框并说该服务已启动且没有错误。然而,当我尝试通过浏览器导航到它时,它不起作用。我使用的所有内容都在运行 Windows 7 的本地计算机上。

我已禁用所有防火墙。

我在这里不知所措,它说它已经开始但我无法导航到它。我在尝试时收到 http 400 错误。

元数据地址为http://myip:8731/ElectricReadingCacheSyncService

这是我的配置代码:

<system.serviceModel>
<services>
<service name="MiddleTierServiceLibrary.ElectricReadingCacheSyncService" behaviorConfiguration="MiddleTierServiceLibrary.ElectricReadingCacheSyncServiceBehavior">
<host>
<baseAddresses>
<add baseAddress="http://MYIP:8731/ElectricReadingCacheSyncService/" />
</baseAddresses>
</host>
<endpoint
address=""
binding="basicHttpBinding"
contract="MiddleTierServiceLibrary.IElectricReadingCacheSyncContract">
<identity>
<dns value="MYIP"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MiddleTierServiceLibrary.ElectricReadingCacheSyncServiceBehavior">
<serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetai! lInFault s="True" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>

非常感谢任何帮助!

编辑:这是客户端配置

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IElectricReadingCacheSyncContract"
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://MYIP:8731/ElectricReadingCacheSyncService/"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IElectricReadingCacheSyncContract"
contract="IElectricReadingCacheSyncContract" name="BasicHttpBinding_IElectricReadingCacheSyncContract" />
</client>
</system.serviceModel>
</configuration>

最佳答案

您正在向配置添加基地址:

...添加 baseAddress="http://MYIP:8731/ElectricReadingCacheSyncService/"/>'...

对于数据交换,您要添加“mex”:

mex 会附加到您的基址。在您的浏览器上,转到:

http://MYIP:8731/ElectricReadingCacheSyncService/ 墨西哥

您应该会看到结果。

关于c# - Windows Mobile App 的 WCF 服务正在运行但我无法连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8683728/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com