String example="<SOAP:Envelope
xmlns:SOAP=\"http://schemas.xmlsoap.org/soap/envelope/\">"
+ "<SOAP:Body>"
+ "<firstName>Jane</firstName>"
+ "<lastName>Doe</lastName>"
+ "</SOAP:Body>"
+ "</SOAP:Envelope>";
ByteArrayInputStream bas=new ByteArrayInputStream(example.getBytes());
try {
SOAPMessage message = MessageFactory.newInstance().createMessage(null,bas);
System.out.println(message.getSOAPBody().toString());
JAXBContext jc = JAXBContext.newInstance(Person.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
System.out.println(message.getSOAPBody()); //this prints null
System.out.println(message.getSOAPBody().toString()); //this prints null
JAXBElement<Person> jb = unmarshaller.unmarshal(message.getSOAPBody(), Person.class); // I am not able to undestand if above lines returnnull, then how come this line populates jb
Person p = jb.getValue();
System.out.println(p.firstName); // prints Jane
System.out.println(p.lastName); // prints Doe
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SOAPException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}