我正在尝试在Android中使用WCF服务。我已将该服务托管为
http://localhost:8080/UserService.svc
这是web.config web.config中的serviceModel部分:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="SimpleBasic">
<security mode="None"/>
</binding>
<binding name="BasicOverHttps">
<security mode="Transport"/>
</binding>
</basicHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="AndroidService.Service1Behavior" name="AndroidService.Service1">
<endpoint address="" binding="wsHttpBinding" contract="AndroidService.IService1">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
<service behaviorConfiguration="AndroidService.UserServiceBehavior" name="AndroidService.UserService">
<endpoint address="ws" binding="wsHttpBinding" contract="AndroidService.IUserService">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="basic" binding="basicHttpBinding" bindingConfiguration="SimpleBasic" contract="AndroidService.IUserService"/>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
<endpoint address="web" binding="webHttpBinding" contract="AndroidService.IUserService" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="AndroidService.Service1Behavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
<behavior name="AndroidService.UserServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
我可以浏览。我还检查了WebServiceStudio中一个GetUser服务方法的输出。结果没问题。然后我创建了一个Android客户端应用程序,我正在尝试使用它。
HttpClient httpClient = new DefaultHttpClient();
try
{
String url = "http://localhost:8080/UserService.svc/GetUser?name=Nitish";
HttpGet method = new HttpGet( new URI(url) );
HttpResponse response = httpClient.execute(method);
if ( response != null )
{
Log.i( "login", "received " + getResponse(response.getEntity()) );
}
else
{
Log.i( "login", "got a null response" );
}
} catch (IOException e) {
Log.e( "error", e.getMessage() );
} catch (URISyntaxException e) {
Log.e( "error", e.getMessage() );
}
catch (Exception e) {
// TODO: handle exception
Log.e( "error", e.getMessage() );
}
我在HttpResponse response = httpClient.execute(method);
Connection to http://localhost:8080 refused
我正在设备上运行该应用程序并在mainefest中添加了以下预设:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
我经历了this solution并尝试在我的IP地址上托管该服务,但没有成功。
答案 0 :(得分:2)
Localhost通常仅在服务和客户端位于同一主机中时才有效。
在客户端请求中使用主机名,例如:
http://MyHostMachine:8080/...
如果您没有使用IIS而是使用Windows服务来托管WCF服务,请在app config中确保相应端点的基址
http://MyHostMachine:8080/
答案 1 :(得分:0)
&#34;本地主机&#34;引用本地设备,而不是您的WCF服务主机。
在你的开发PC上它是127.0.0.1,它引用了这台机器。
在你的android设备上它是相同的,这引用了设备。
你必须更换&#34; localhost&#34;使用正在运行WCF服务的计算机的IP地址。
答案 2 :(得分:0)
当您在转换为127.0.0.1的IP地址中指示localhost时,您无法将localhost引用到应用程序的代码中,因为它尝试连接到自身以接收数据。 正确的解决方案恕我直言,取代&#34; localhost&#34;使用LAN中的机器IP地址。如果您有Windows尝试运行终端并键入&#34; ipconfig&#34;发现正确的IP。