I'm working to write a simple article editor which will be used with a CMS system which offers an Atom API to add/edit articles. To communicate with the CMS, I am using the Apache Abdera library. But I'm running into a problem with character encoding. The data sent to the CMS will be encoded like this:
<entry>
<content xmlns:vdf="http://www.vizrt.com/types" type="xml">
<vdf:payload>
<vdf:field name="body">
<vdf:value><div xmlns="http://www.w3.org/1999/xhtml"><p>Text comes here</p></div></vdf:value>
</vdf:field>
</vdf:payload>
</content>
</entry>
But the CMS system requires this:
<entry>
<content xmlns:vdf="http://www.vizrt.com/types" type="xml">
<vdf:payload>
<vdf:field name="body">
<vdf:value><div xmlns="http://www.w3.org/1999/xhtml"><p>Text comes here</p></div></vdf:value>
</vdf:field>
</vdf:payload>
</content>
</entry>
In other words, no character escaping. Does anyone know how this can be achieved using Apache Abdera?
I'm not entirely familiar with abdera's internals and therefore can't explain exactly what is happening here, but I think the essence is that you can not use Strings or plain text as values if you don't want abdera to escape stuff. Instead, you must use an
Element
with abdera-typeXHtml
.Something like this worked for me:
Now,
bodyValue
can be used as value to your field and Abdera should render everything properly.