I’m currently working on code implementation that involves using JAXB for unmarshalling. Just an example of what my XML data looks like: <services> <service type=”0″>…</service> <service type=”1″>…</service> <service type=”1″>…</service> </services> I’m unmarshalling this to Object Services.java having List<Service>. Each service has common data like name, status, type (the attribute) and along with their own serviceRead more