Hi.
> i have a jaxws web service using jaxb and i have to send an xml file with it
> (i don't have the java classes of this file). So i try to put this file in a
> string and send it. but jaxb replace all my mark by their ascii code like
> that :
>
> <keyword>piezometer</keyword>
>
> is there a way to keep my mark ?
> is it possible to send xml whitch is not generate by jaxb?
Make a DOM Element-typed field or property and annotate it with @XmlAnyElement.
Bye.
/lexi