ksoap2连接超时

时间:2011-09-25 11:22:39

标签: c# java android web-services ksoap2

我正在尝试从Android模拟器调用.net Web服务,但我收到连接超时异常。

在我尝试调用我的webService之前,我没有问题地调用了http://www.w3schools.com/webservices/tempconvert.asmx

所以我假设我在Android应用程序中的.net webService中有错误。

.net是

 [WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
// [System.Web.Script.Services.ScriptService]
public class Pros : System.Web.Services.WebService {

    [WebMethod]
    public List<Product> Get(int pageIndex,int pageSize) {
        var efUnitOfWork = new EFUnitOfWork();
        var productsRepos = new ProductRepository(new EFRepository<Product>(), efUnitOfWork);
        return (List<Product>)productsRepos.GetByPage(pageIndex, pageSize);
    }
}

和java是

private static final String METHOD_NAME = "Get";
private static final String NAMESPACE = "http://tempuri.org/";
private static final String URL = "http://10.0.0.2:2807/webservices/webService.asmx";
private static String SOAP_ACTION = NAMESPACE+METHOD_NAME;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    try {
        SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

        request.addProperty("pageIndex", "0");
        request.addProperty("pageSize", "10");

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

        AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(URL);
        androidHttpTransport.call(SOAP_ACTION, envelope);
        SoapObject result=(SoapObject)envelope.getResponse();

        String resultData=result.getProperty(0).toString();
    }
    catch (Exception e) {
        e.printStackTrace();
    }
}

我错过了什么吗?

2 个答案:

答案 0 :(得分:0)

您可以尝试增加呼叫的超时时间,如下所示:

AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(URL, 15000);

答案 1 :(得分:0)

你应该尝试增加超时,但更重要的是你必须将你的呼叫转移到后台线程。使用AsyncTask。

另外正如评论中所讨论的那样,在ksoap2-android wiki中链接了一篇博文,详细解释了连接内容。您不能使用localhost或等效设备,因为它在设备上,但您的服务在服务器上运行..现在我再次查看代码.. 10.0.0.2最不可能工作。

在服务器上执行ifconfig / ipconfig并使用该IP地址。我打赌它会起作用。