I need to get a http status code from ksoap response to specify exceptions like 403-unauthorized (I use client certificates for authentication - when a certificate is not valid). I was trying to find a http status within ResponseProperties (where it should be I think), but I didn't.
Code:
...
HttpsTransportSE transport=new HttpsTransportSE(host, port, service, timeout);
try {
SoapObject request=new SoapObject(namespace, method);
request.addProperty("param", param);
SoapSerializationEnvelope envelope=new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet=true;
envelope.setOutputSoapObject(request);
transport.call(getStatusAction, envelope);
SoapPrimitive response=(SoapPrimitive)envelope.getResponse();
nRet=Integer.parseInt(response.toString());
}
catch(Exception e) {
// Here I can get HeaderProperties by transport.getConnection().getResponseProperties();
// But http status code is not present
e.printStackTrace();
}
...
Thanks.
URL myurl = new URL(url);
URLConnection connection = myurl.openConnection();
connection.setConnectTimeout(20 * 1000);
HttpURLConnection httpConnection = (HttpURLConnection) connection;
int responseCode = -1;
if (responseCode == HttpURLConnection.HTTP_OK)
{
httpConnection.disconnect();
SoapObject request = new SoapObject(namespace, methodName);
//...
}
else if(...)
{
//...
}