How to get the contents of response when the webservice returns a parsing error.
Sax listner
has these methods
public void parsingSuccess(List list),
public void parsingError(String error) &
public void connectionError(String error)
In case of error we just get the error message.Only when parsing is successful we get a list. How to get the entire content when there is a parsing error?