我使用 Visual Studio 2010 创建 wcf 并在 webmaterix 3 上发布......我在 android 应用程序中调用这个 web 服务但没有运行......这是我的 web.config:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
这是我的android代码:
private static final String NAMESPACE = "http://tempuri.org/";
private static final String URL =
"http://localhost:60977/Service1.svc?singleWsdl";
private static final String SOAP_ACTION = "http://tempuri.org/IService1/GetData";
private static final String METHOD_NAME = "GetData";
TextView txt=(TextView)findViewById(R.id.textView1);
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
SoapSerializationEnvelope envelope =
new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
name("SS");
try {
name("0");
androidHttpTransport.call(SOAP_ACTION, envelope);
name("1");
SoapObject resultsRequestSOAP = (SoapObject) envelope.bodyIn;
name("2");
name(resultsRequestSOAP.toString());
name("3");
txt.setText("Received :" + resultsRequestSOAP.toString());
} catch (Exception e) {
txt.setText(e.getMessage());
name(e.getMessage());
e.printStackTrace();
}
当 catch 运行时,没有任何消息...