Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know of a JAXB setting to prevent standalone="yes" from being generated in the resulting XML?

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
share|improve this question
I'm having exactly the same problem... – Somatik Dec 4 '08 at 12:31
1  
Why is that a problem? – porneL Dec 14 '08 at 18:56

6 Answers

up vote 17 down vote accepted
marshaller.setProperty("com.sun.xml.bind.xmlDeclaration", Boolean.FALSE);

can be used to have no

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

However i wouldnt consider this best practice.

share|improve this answer
Thanks, this is exactly what I needed. I would agree it is best practice to include the line, but a web service I am interfacing with does not expect it. – jgrowl Mar 17 '10 at 15:29
3  
Good that it works, but FWIW, service is broken if it can not accept legal xml, so it's probably good to file a bug report against it. – StaxMan Jan 8 '11 at 8:05
2  
Doesn't work with JAXB in JDK1.6. See so_mv's answer for correct solution. – sversch Aug 14 '12 at 7:32
That explodes in flight : exception. – Nicolas Barbulesco Apr 24 at 9:38

in JAXB that is part of JDK1.6

marshaller.setProperty(Marshaller.JAXB_FRAGMENT, Boolean.TRUE);
share|improve this answer
This is the correct answer for JDK1.6. – sversch Aug 14 '12 at 7:31
This does not give the expected result. This removes all the XML declaration line. What I want is just removing the standalone attribute in the XML declaration. – Nicolas Barbulesco Apr 24 at 9:11

You can either use

marshaller.setProperty(Marshaller.JAXB_FRAGMENT, Boolean.TRUE);

or

marshaller.setProperty("com.sun.xml.bind.xmlDeclaration", Boolean.FALSE)

to disable the default XML declaration, and then add your custom XML declaration,

<?xml version="1.0" encoding="UTF-8"?>

by

marshaller.setProperty("com.sun.xml.bind.xmlHeaders", "<?xml version=\"1.0\" encoding=\"UTF-8\"?>");

to the generated xml, thus avoiding the standalone="yes" property.

share|improve this answer
3  
Clear answer, maybe helps also to know how to add custom XML declaration: marshaller.setProperty(Marshaller.JAXB_FRAGMENT, Boolean.TRUE); marshaller.setProperty("com.sun.xml.bind.xmlHeaders", "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); – gersonZaragocin Sep 18 '12 at 14:40
1  
good point, I have updated it @gersonZaragocin – WarFox Dec 3 '12 at 16:37
The "setProperty" with "xmlDeclaration" explodes in flight : exception. – Nicolas Barbulesco Apr 24 at 9:31
The "setProperty" line with "xmlHeaders" fails too. PropertyException. So this is not a solution. – Nicolas Barbulesco Apr 24 at 9:40
which version of java and jaxb are you using? – WarFox Apr 24 at 10:34

If you make document dependent on DOCTYPE (e.g. use named entities) then it will stop being standalone, thus standalone="yes" won't be allowed in XML declaration.

However standalone XML can be used anywhere (while non-standalone is problematic for XML parsers that don't load externals).

I don't see how this declaration could be a problem, other than for interoperability with software that doesn't support XML, but some broken homegrown XML-like voodoo.

share|improve this answer
Exactly, any allegedly xml-processing system that barfs on xml declaration seems highly suspicious. – StaxMan Jan 8 '11 at 8:06
marshaller.setProperty("com.sun.xml.bind.xmlDeclaration", Boolean.FALSE);

This configuration is dependent on the SUN JRE inner implemention, it does not work on OpenJDK.

Is there a cross-platform way to do this?

share|improve this answer

You can set the Marshaller.JAXB_FRAGMENT to true and then add the custom xml header yourself to the output stream. In you want to do this in scala,

val stream = new ByteArrayOutputStream
stream.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n".getBytes())

marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true)
marshaller.marshal(obj, stream)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.