I have an XML which has the following format (a simplified example)
<Service id = "1">
<Message>
<options id="standard">
<option name="autorendered">
<value> 1</value>
</option>
<option name="environment">
<value> V</value>
</option>
<option name="document_name">
<value> Mail - MY Test Mail2.pdf</value>
</option>
<option name="document_provider">
<value> LNotes</value>
</option>
</options>
</Message>
</Service>
<Service id = "2">
<Message>
<options id="standard">
<option name="autorendered">
<value> 4</value>
</option>
<option name="environment">
<value> V</value>
</option>
<option name="document_name">
<value> attachment1.jpg</value>
</option>
<option name="document_provider">
<value> LNotes</value>
</option>
</options>
</Message>
</Service>
Now when I use JAXB and create mapping classes it works fine normally. But I require the value of the Message tag whatever comes in between as a String but if I do that it returns empty value.
But if I have a tag like hello and use service.getMessage(), it returns me hello properly.
I want service.getMessage to return <options>.....</option> as a String.
If not possible in JAX-B kindly suggest me something else like Jaxpath, Xpath, Stax or some other std recognized way of doing it.
My Service class looks like this -
public class Service {
private Request request;
@XmlElement(name = "Request")
public Request getRequest() {
return request;
}
public void setRequest(Request edmsRequest) {
this.request = request;
}
}