Hello, We have been having issues with CDATA not being preserved by Axis2. In the response xml, the '<' are escaped to '<' So instead of <someTagName><![CDATA[ROSEANNA]]></someTagName> we get <someTagName><![CDATA[ROSEANNA]]></someTagName> in the response.
Reading this http://people.apache.org/~veithen/synapse/faq.html#cdata suggestion, we tried creating XMLInputFactory.properties file containing this single line - javax.xml.stream.isCoalescing=false and placed the file under WEB-INF/classes and retried, again the same result. We are using Axis21.4, XMLBeans 2.3.0, Tomcat 6. The other idea was to programatically replace the escape characters using regular expressions - which I think is really not needed. Any help is highly appreciated.
