我正在开发一种将数据从Android手机传输到服务器的解决方案(用C#/ .NET编写)。
我创建了一个WCF服务,并使用模拟器测试一切正常。然后,当我尝试从手机(连接到家庭wifi网络)登录时,我收到以下异常消息:
org.apache.http.conn.HttpHostConnectException:与http://192.168.1.5:8000的连接被拒绝
如果有人能够查看配置文件和界面并提供有关如何启用连接的任何建议,我将非常感激。
的web.config:
<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;
}
}
答案 0 :(得分:0)
要连接到您的服务,需要将其托管在公共Web服务器上。看起来您正在使用的地址192.168.1.5:8000是一个家庭网络地址,无法从外部世界(手机)访问。
答案 1 :(得分:0)
如果您使用的是Vista操作系统,则必须将地址添加到防火墙中
netsh http add urlacl url = http://+:8000/ user = DOMAIN \ user
答案 2 :(得分:0)
使用您的LAN ip将您的模拟器与Web服务连接,对于EX:http://192.168.1.78:8080/webservice
但必须启用您的本地连接 转到:控制面板\网络和Internet \网络连接