3

我正在开发一种将数据从 android 手机传输到服务器的解决方案(用 C#/.NET 编写)。

我创建了一个 WCF 服务并使用模拟器进行测试,一切正常。然后,当我尝试从手机登录(连接到家庭 wifi 网络)时,我收到以下异常消息:

org.apache.http.conn.HttpHostConnectException:连接到http://192.168.1.5:8000被拒绝

如果有人可以查看配置文件和界面并就如何启用连接提供任何建议,我将不胜感激。

网络配置:

<configuration>
  <system.web>
    <compilation debug="true"/>
  </system.web>
  <system.serviceModel>
    <bindings>
      <webHttpBinding>
        <binding name="DefaultBinding"
                 allowCookies="true"
                 bypassProxyOnLocal="true" />
      </webHttpBinding>
    </bindings>
    <behaviors>
      <endpointBehaviors>
        <behavior name="RESTFriendly">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <services>
      <service name="RESTServer.LoginService">
        <endpoint address=""
                  behaviorConfiguration="RESTFriendly"
                  binding="webHttpBinding"
                  bindingConfiguration="DefaultBinding"
                  contract="RESTServer.ILoginService" />
      </service>
    </services>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
  </system.serviceModel>
</configuration>

界面:

[ServiceContract()]
public interface ILoginService
{
    [WebGet(ResponseFormat = WebMessageFormat.Xml, UriTemplate = "/username={username}&password={password}")]
    [OperationContract]
    Message Login(string username, string password);
}

服务实现:

public class LoginService : ILoginService
{
    public Message Login(string username, string password)
    {
        Message message = new Message();
        SQLWorks sqlWorks = new SQLWorks();
        string strSession = sqlWorks.Login(username, password);
        string strMessage;
        message.Session = strSession;
        if(strSession == "")
        {
            strMessage = "Login failed! Please check your username/password!";
        }
        else
        {
            strMessage = "Login Successful";
        }
        message.ErrorMessage = strMessage;
        return message;
    }
}
4

3 回答 3

0

为了连接到您的服务,它需要托管在公共 Web 服务器上。看起来您使用的地址 192.168.1.5:8000 是家庭网络地址,无法从外部世界(电话)访问。

于 2009-03-24T05:04:15.923 回答
0

如果您使用的是 vista 操作系统,则必须将地址添加到防火墙中

netsh http 添加 urlacl url= http://+:8000/ user=DOMAIN\user

于 2009-03-24T05:59:11.127 回答
0

使用您的 LAN ip 将您的模拟器与 Web 服务连接起来,例如:http: //192.168.1.78 :8080/webservice

但是您的本地连接必须启用转到:控制面板\网络和 Internet\网络连接

于 2011-10-09T16:11:28.880 回答