vote up 4 vote down star

I have an Object that is being marshalled to XML using JAXB. One element contains a String that includes quotes ("). The resulting XML has " where the " existed.

Even though this is normally preferred, I need my output to match a legacy system. How do I force JAXB to NOT convert the HTML entities?

--

Thank you for the replies. However, I never see the handler escape() called. Can you take a look and see what I'm doing wrong? Thanks!

package org.dc.model;

import java.io.IOException;
import java.io.Writer;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;

import org.dc.generated.Shiporder;

import com.sun.xml.internal.bind.marshaller.CharacterEscapeHandler;

public class PleaseWork {
    public void prettyPlease() throws JAXBException {
    	Shiporder shipOrder = new Shiporder();
    	shipOrder.setOrderid("Order's ID");
    	shipOrder.setOrderperson("The woman said, \"How ya doin & stuff?\"");

    	JAXBContext context = JAXBContext.newInstance("org.dc.generated");
    	Marshaller marshaller = context.createMarshaller();
    	marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
    	marshaller.setProperty(CharacterEscapeHandler.class.getName(),
    			new CharacterEscapeHandler() {
    				@Override
    				public void escape(char[] ch, int start, int length,
    						boolean isAttVal, Writer out) throws IOException {
    					out.write("Called escape for characters = " + ch.toString());
    				}
    			});
    	marshaller.marshal(shipOrder, System.out);
    }

    public static void main(String[] args) throws Exception {
    	new PleaseWork().prettyPlease();
    }
}

--

The output is this:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<shiporder orderid="Order's ID">
    <orderperson>The woman said, &quot;How ya doin &amp; stuff?&quot;</orderperson>
</shiporder>

and as you can see, the callback is never displayed. (Once I get the callback being called, I'll worry about having it actually do what I want.)

--

flag

80% accept rate
Deleted my prior answer, since it was utterly wrong... however, it's still worth pointing out that &quot; is not an HTML entity, it's an XML escape. – skaffman Oct 1 at 22:54
It's actually both an XML and HTML entity. en.wikipedia.org/wiki/… – Elliot Oct 2 at 11:26
@Elliot: but in this context it is an XML escape. This is not HTML. – Stephen C Oct 3 at 1:11
A teammate of mine figured this out without requiring a Vendor Specific implementation. Shown above. – Elliot Oct 5 at 18:48

3 Answers

vote up 1 vote down

Hey, I've been playing with your example a bit and debugging the JAXB code. And it seems it's something specific about UTF-8 encoding used. The escapeHandler property of MarshallerImpl seems to be set properly. However it's being used not in every context. If I searched for calls of MarshallerImpl.createEscapeHandler() I found:

public XmlOutput createWriter( OutputStream os, String encoding ) throws JAXBException {
    // UTF8XmlOutput does buffering on its own, and
    // otherwise createWriter(Writer) inserts a buffering,
    // so no point in doing a buffering here.

    if(encoding.equals("UTF-8")) {
        Encoded[] table = context.getUTF8NameTable();
        final UTF8XmlOutput out;
        if(isFormattedOutput())
            out = new IndentingUTF8XmlOutput(os,indent,table);
        else {
            if(c14nSupport)
                out = new C14nXmlOutput(os,table,context.c14nSupport);
            else
                out = new UTF8XmlOutput(os,table);
        }
        if(header!=null)
            out.setHeader(header);
        return out;
    }

    try {
        return createWriter(
            new OutputStreamWriter(os,getJavaEncoding(encoding)),
            encoding );
    } catch( UnsupportedEncodingException e ) {
        throw new MarshalException(
            Messages.UNSUPPORTED_ENCODING.format(encoding),
            e );
    }
}

Note that in your setup the top section (...equals("UTF-8")...) is taken into consideration. However this one doesn't take the escapeHandler. However if you set the encoding to any other, the bottom part of this method is called (createWriter(OutputStream, String)) and this one uses escapeHandler, so EH plays its role. So, adding...

    marshaller.setProperty(Marshaller.JAXB_ENCODING, "ASCII");

makes your custom CharacterEscapeHandler be called. Not really sure, but I would guess this is kind of bug in JAXB.

link|flag
Thanks for your response, Grzegorz. I agree with you, it appears to be a JAXB bug. And if there is a legitimate reason for it, it'd be nice to have it in the documentation. Thanks! – Elliot Oct 6 at 12:46
I've filed a bug report in JAXB tracking tool: jaxb.dev.java.net/issues/show_bug.cgi?id=693/… – GrzegorzOledzki Oct 6 at 14:38
vote up 0 vote down check

Solution my teammate found:

PrintWriter printWriter = new PrintWriter(new FileWriter(xmlFile));
DataWriter dataWriter = new DataWriter(printWriter, "UTF-8", DumbEscapeHandler.theInstance);
marshaller.marshal(request, dataWriter);

Instead of passing the xmlFile to marshal(), pass the DataWriter which knows both the encoding and an appropriate escape handler, if any.

Note: Since DataWriter and DumbEscapeHandler are both within the com.sun.xml.internal.bind.marshaller package, you must bootstrap javac.

link|flag
Did you try @laz's answer? That looks like the way to do it "properly". – skaffman Oct 12 at 7:16
vote up 2 vote down

Seems like it is possible with Sun's JAXB implementation, although I've not done it myself.

link|flag

Your Answer

Get an OpenID
or

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