我是关于android和wcf服务的新手。我有一个期望。
这是android功能:
private void Post(String VAL)
{
HttpClient httpClient = new DefaultHttpClient();
try
{
String aaa = "aaa";
String url = "http://192.168.30.117:59151/IService1";
HttpPost method = new HttpPost(url);
StringEntity e = new StringEntity("{ \"something\":12345 }", "UTF-8");
method.setEntity(e);
method.setHeader("content-type", "application/json");
method.setHeader("Accept", "application/json");
HttpResponse response = httpClient.execute(method);
HttpEntity entity = response.getEntity();
if(entity != null)
{
System.out.println(entity);
}
} catch (IOException e) {
Log.e( "error", e.getMessage() );
}}
这里是wcf part:
[ServiceContract()]
public interface IService1
{
[OperationContract]
[WebInvoke(Method= "POST", UriTemplate = "GetData?parameter={parameter}", ResponseFormat = WebMessageFormat.Json)]
string GetData(string parameter);
[OperationContract]
CompositeType GetDataUsingDataContract(CompositeType composite);
// TODO: Add your service operations here
}
public string GetData(String value)
{
return string.Format("You entered: {0}", value);
}
这是配置文件:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="http_behavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="http_behavior" name="WcfServiceGps.Service1">
<endpoint address="" binding="webHttpBinding" bindingConfiguration=""
name="GetData" contract="WcfServiceGps.IService1" />
<endpoint address="mex" binding="mexHttpBinding" name="GetDataMex"
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://192.168.30.117:59151/Service1.svc/" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<directoryBrowse enabled="true"/>
</system.webServer>
当我从android调用服务时
HttpResponse response = httpClient.execute(method);
它给出了以下例外:
答案 0 :(得分:0)
如果您使用虚拟机在Android上编译您的应用程序,则必须在服务器上具有可见性,当您使用虚拟机时也是如此。您正在获得该异常,因为您的设备不在同一个网络中,而且您似乎没有部署您的服务器,您只是在Visual Studio上编译它...它是什么? &#39; 59151&#39; IIS快递的端口号?。
在Windows上下载IIS并部署您的服务器,然后使用ipconfig命令知道您的本地网络中的IP地址经常尝试使用Android浏览器连接您的服务器(编写您的IP 192.168.X.X)。如果它有效,请尝试在Android浏览器中调用REST服务,如果它也能正常工作,您现在可以在android中测试您的REST调用。
顺便使用Retrofit 2作为REST库。
答案 1 :(得分:0)
如果你在主线程中调用api,请不要这样做。使用AsyncTask来使用api。 并将这些行放在您的活动中或将您使用的内容分段。
if (android.os.Build.VERSION.SDK_INT > 9) {
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
}