WCF服务的Windows移动应用程序运行,但我无法连接

本文关键字:连接 运行 服务 Windows 移动 应用程序 WCF | 更新日期: 2023-09-27 18:19:10

这是我第一次尝试使用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> 

WCF服务的Windows移动应用程序运行,但我无法连接

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

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

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

mex被附加到您的基址。在浏览器中,进入:

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

,您应该看到结果