I try to marshal a model generated by EclipseLink. The XML I get is
<?xml version="1.0" encoding="UTF-8"?>
<slipbox xmlns:ns0="" version="1.0">
<guid>7c555370-ab22-11e1-bfe3-005056c00008</guid>
<name>demo</name>
<stocks>
<stock guid="7c555371-ab22-11e1-bfe3-005056c00008">
<name>local</name>
<location>F:/GIT/Git/git/slipbox/org.jessas.slipbox.test/tests/demoslipbox/deliverables</location>
</stock>
</stocks>
</slipbox>
My question is, how can I force MOXy JAXB to omit the xmlns:ns0="" declaration, so that the second line in the XML reads
<slipbox version="1.0">
Sorry if this is a dumb question.