Is it possible to parse an XML soap response to a java Object?
I have a class generated by Apache CXF with the structure of the object, and I have the XML soap response from the request.
I want to pass the XML soap response without invoking the service to the java object. It's possible to do this because I see in the java object create by CXF XML annotations:
StringReader sr = new StringReader(output);
Results rs = (Results) JAXBContext.newInstance(Results.class).createUnmarshaller().unmarshal(sr);