You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to implement a CDATAFieldHandler, and it works fine except that the string value returned by the getValue() is escaped inthe final marshalled xml. Marshalling is done by this code segment:
mappingContext is an instance of XMLContext initalised at boot time by loading all of our mappings.
My test unmarshalls a hand-written xml and marshalls it back. Unmarshall works, the Object created correctly, but marshaller will convert the string escaped.
I use castor 1.4.1. and JavaSE 1.8
The text was updated successfully, but these errors were encountered:
I have a similar issue in 1.3.1 (on Java 7) where my code goes through the trouble to replace apostrophe (') with &apost; while creating a byte array stream, but when I unmarshall the stream into ojbects the encodings are changed back to apostrophes. This is causing the concatenation in the db code to fail.
I am trying to implement a CDATAFieldHandler, and it works fine except that the string value returned by the getValue() is escaped inthe final marshalled xml. Marshalling is done by this code segment:
mappingContext
is an instance of XMLContext initalised at boot time by loading all of our mappings.My test unmarshalls a hand-written xml and marshalls it back. Unmarshall works, the Object created correctly, but marshaller will convert the string escaped.
I use castor 1.4.1. and JavaSE 1.8
The text was updated successfully, but these errors were encountered: