We have a java desktop application that uses JAXB to generate an XML file which is then read by a .Net application and stored in a SQL server database.
We're finding that carriage returns in Java and not coming over as carriage return/line feeds in .Net/SQL.
Is there a way to tell Java or Jaxb to include both the carriage return and line feed. Is there a way to get .Net to put them in. Would a CDATA block help?
Thanks.