웹 서비스에 연결하는 코드 세그먼트가 있습니다. 내 앱에는 버튼이있어 서버에서 데이터를 가져 와서 사용자에게 보여줍니다. 그것은 매우 간단하지만 결코 작동하지 않습니다. 내 문제에 대한 게시물을 모두 읽었지만 그 중 아무도 문제를 해결하지 못했습니다. 코드는 codeproject sample에서 사용됩니다 Network_Access 및 인터넷 : 나는이 권한을 추가 한웹 서비스에 연결하면 SocketTimeoutException으로 끝납니다.
public void onClick(View v) {
SoapObject request = new SoapObject("http://tempuri.org/", "Add");
PropertyInfo pi=new PropertyInfo();
pi.setName("a");
pi.setValue(10);
pi.setType(Integer.class);
request.addProperty(pi);
pi=new PropertyInfo();
pi.setName("b");
pi.setValue(15);
pi.setType(Integer.class);
request.addProperty(pi);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE httpTransport = new HttpTransportSE("http://grasshoppernetwork.com/NewFile.asmx");
String response="";
try
{
httpTransport.call("http://tempuri.org/Add", envelope);
response = (envelope.getResponse()).toString();
}
catch (Exception exception)
{
response=exception.toString();
}
onSoapRequestFinished(response.toString());
}
. 놀랍게도 웹 서비스는 AVD의 브라우저에서 액세스 할 수 있습니다.
오류는 다음과 같습니다
java.net.MalformedURLException: no protocol: java.net.SocketTimeoutException
at java.net.URL.<init>(URL.java:589)
at java.net.URL.<init>(URL.java:486)
at java.net.URL.<init>(URL.java:435)
at org.apache.harmony.xml.parsers.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:115)
at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:155)
at ir.dana.sharif.testxml.MainActivity.onSoapRequestFinished(MainActivity.java:103)
at ir.dana.sharif.testxml.MainActivity.onClick(MainActivity.java:84)
at android.view.View.performClick(View.java:5610)
at android.view.View$PerformClick.run(View.java:22265)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6077)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:865)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)