When I use an xsl-fo file produce with WordToFoConverter. There is an exception in Apache FOP because the xmlns of the xmpmeta element is not correct. hwpf generate : <x:xmpmeta xmlns:x="adobe:ns:meta"> [...] </x:xmpmeta> but apache FOP expect a slash ("/") at the end: <x:xmpmeta xmlns:x="adobe:ns:meta/"> [...] </x:xmpmeta> I have checked the specification (see http://partners.adobe.com/public/developer/en/xmp/sdk/XMPspecification.pdf, page 22) I have modified FoDocumentFacade at line 245 like this : Element xmpmeta = document.createElementNS( "adobe:ns:meta/", "x:xmpmeta" ); And it works fine now.
Can you upload your fix as a patch against trunk ? Yegor
Created attachment 28311 [details] Patch: unified diff
Created attachment 28312 [details] Patch : file modified
Here there are. Alexis (In reply to comment #1) > Can you upload your fix as a patch against trunk ? > > Yegor
Thanks for the patch, applied in r1244429 Yegor