Hi All,
We wrote our services using the RESTlet framework and when an exception occurs
we set the Throwable in the response doing this:
} catch (Exception e) {
// We do our logging here
getResponse().setStatus(Status.SERVER_ERROR_INTERNAL,
e);
}
The client that we have is built using standard HttpUrlConnection and not the
RESTlet client. How can we pull that exception out of the response using
HttpUrlConnection?
Thanks,
Steve
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2953153