-
Bug
-
Resolution: Done
-
Major
-
None
-
None
The Fuse Tooling Route Editor for the Camel XML DSL automatically escapes CDATA blocks when switching between "Design" and "Source" view.
In some of our Routes we use hardcoded bodies like this:
<setBody id="setBody10"> <constant> <![CDATA[ <v1:isAliveResponse xmlns:v1="http://model.ws.xxxx.com/global/v1"> <isAlive>true</isAlive> </v1:isAliveResponse> ]]> </constant> </setBody>
...but when we switch to the Design view and then back to the source view it looks like that:
<setBody id="setBody10"> <constant> <v1:isAliveResponse xmlns:v1="http://model.ws.xxxx.com/global/v1"> <isAlive>true</isAlive> </v1:isAliveResponse> </constant> </setBody>