When i run xmltask it's convert tags like '
to '
.
Example:
From:
<Value>'operation'</Value>
To:
<Value>'operation'</Value>
How can I avoid this auto converting?
I want that '
to stay as it is.
When i run xmltask it's convert tags like '
to '
.
Example:
From:
<Value>'operation'</Value>
To:
<Value>'operation'</Value>
How can I avoid this auto converting?
I want that '
to stay as it is.
Try setting the expandEntityReferences
attribute to false
:
<xmltask source="..." dest="..." expandEntityReferences="false"/>
If you really want to keep your &apos
, you can try this :
write &apos;
instead of '
it will be processed like this :
&apos;
=> '
(instead of '
=> '
)
Which means you have to replace every &
with &
...
There must be a smarter solution
Apolo