ECONNREFUSED(连接被拒绝)android连接到webservice

use*_*923 2 java android web-services econnrefused

尝试使用soapui连接到webservice时,我收到连接被拒绝错误.当我尝试在URL中使用127.0.0.1时,错误是ECONNREFUSED,但是当我尝试10.0.2.2时,错误是连接超时.请有人帮忙.谢谢.这是我在主要活动上的代码.

private static final String SOAP_ACTION = "http://tempuri.org/GetSMSOutgoing";
    private static final String INSERT_INCOMING_SMS = "SaveSMSIncoming";
    private static final String GET_OUTGOING_SMS = "GetSMSOutgoing";
    private static final String NAMESPACE = "http://tempuri.org/";
    private static final String URL = "http://127.0.0.1:62499/WSsmsandroid.asmx?wsdl";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Thread thread = new Thread(new Runnable() {
    @Override
    public void run() {
        try {
            getOutgoingSMS();
        } catch (Exception e) {
            Log.d("NOT CONNECTED: IOException", "NOT CONNECTED");
            e.printStackTrace();
        }

    }
});

thread.start();

}

public String getOutgoingSMS() {
        String outgoingSMS = null;

        SoapObject request = new SoapObject(NAMESPACE, GET_OUTGOING_SMS);
        request.addProperty("sentBy", "+639209100000");

        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
                SoapEnvelope.VER11);
        envelope.dotNet = true;
        envelope.setOutputSoapObject(request);

        HttpTransportSE ht = new HttpTransportSE(URL);
        try {
            ht.call(SOAP_ACTION, envelope);

            SoapObject response2 = (SoapObject) envelope.getResponse();
            denemeList = new String[response2.getPropertyCount()];

            for (int i = 0; i < response2.getPropertyCount(); i++) {
                denemeList[i] = response2.getProperty(i).toString();
            }
            outgoingSMS = response2.toString();

        } catch (Exception e) {
            e.printStackTrace();
        }
        return outgoingSMS;
    }
Run Code Online (Sandbox Code Playgroud)

Die*_*uza 5

要从Android模拟器访问您的PC localhost,请使用10.0.2.2而不是127.0.0.1.localhost或127.0.0.1指的是模拟设备本身,而不是运行模拟器的主机.

对于Genymotion,使用:10.0.3.2而不是10.0.2.2

参考:http://developer.android.com/tools/devices/emulator.html#networkaddresses

PS.:已经在连接失败时回答:ECONNREFUSED