我在Asp.net中有一个Web服务,我通过Ksoap库访问android中的Web服务。
当服务器开启且我的webservice模式为ON时,它正常工作。问题是当服务器关闭或Web服务未启用或处于关闭模式时,它将显示连接超时的异常。
如何通过点击按钮检查我的服务是否可全局访问?
答案 0 :(得分:1)
您将使用HttpResponse对象从Web服务获取结果,以检查结果使用此:
HttpResponse response;
// Your code to execute url in form of response = httpclient.execute(request)
..
if (resp.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
//Response is valid.
}else{
// Invalid response
}