Right now I am getting this as an XML output from my JAXB Marshaller html
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><create></create>
But I want my root element as: java
<create xmlns="http://ws.abc.com" xmlns:doc="http://ws.abc.com">
Do I need to modify this using parsers, Or is there any annotation available. this
A: spa
You can set the following property on the Marshaller to remove the header: code
marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
For More Information orm