up vote 5 down vote favorite
1
share [g+] share [fb]

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.)

--

link|improve this question

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 '09 at 22:54
It's actually both an XML and HTML entity. en.wikipedia.org/wiki/… – Elliot Oct 2 '09 at 11:26
@Elliot: but in this context it is an XML escape. This is not HTML. – Stephen C Oct 3 '09 at 1:11
A teammate of mine figured this out without requiring a Vendor Specific implementation. Shown above. – Elliot Oct 5 '09 at 18:48
I've run into the same problem. Which version of JAXB are you using? Currently I use JAXB 2.2.4 and in that release quotes are escaped only in attributes. However I have some XML files, produced by v2.1.13, which have the same "problem". However I have checked the source of MinimumEscapeHandler from 2.1.13, and it seems to be OK (I even checked 2.0.1). Perhaps, this escape handler was not activated (thanks to @GrzegorzOledzki for bug report). – dma_k Nov 2 '11 at 10:33
show 1 more comment
feedback

7 Answers

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

link|improve this answer
feedback

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|improve this answer
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 '09 at 12:46
I've filed a bug report in JAXB tracking tool: jaxb.dev.java.net/issues/show_bug.cgi?id=693 – Grzegorz Oledzki Oct 6 '09 at 14:38
feedback

I checked the XML specification. http://www.w3.org/TR/REC-xml/#sec-references says "well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. " so it appears that the XML parser used by the legacy system is not conformant.

(I know that it does not solve your problem, but it is at least nice to be able to say which component is broken).

link|improve this answer
feedback
up vote 0 down vote accepted

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|improve this answer
1  
Did you try @laz's answer? That looks like the way to do it "properly". – skaffman Oct 12 '09 at 7:16
feedback

Well. I have a similar issue (I think).

I need to leave the default behavior about "escapes", but add also a "single quote" escape to "&apos;".

I'm using the last stable build: jaxb-ri-20091104

And the CharacterEscapeHandler "double" escape the strings. What I mean is that instead of translating the single quote to "&apos;" it transtates it to "&amp;apos;"

I opened an issue a month ago, but nobody has even commented about it yet: https://jaxb.dev.java.net/issues/show_bug.cgi?id=741

Any Ideas?

link|improve this answer
feedback

interesting but with strings you can try out

Marshaller marshaller = jaxbContext.createMarshaller();
StringWriter sw = new StringWriter();
marshaller.marshal(data, sw);
sw.toString();

at least for me this do not escape quotes

link|improve this answer
feedback

The simplest way, when using sun's Marshaller implementation is to provide your own implementation of the CharacterEscapeEncoder which does not escape anything.

    Marshaller m = jcb.createMarshaller();
m.setProperty(
    "com.sun.xml.bind.marshaller.CharacterEscapeHandler",
    new NullCharacterEscapeHandler());

With

public class NullCharacterEscapeHandler implements CharacterEscapeHandler {

    public NullCharacterEscapeHandler() {
        super();
    }


    public void escape(char[] ch, int start, int length, boolean isAttVal, Writer writer) throws IOException {
        writer.write( ch, start, length );
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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