Paulo Carvalho wrote: > I am trying XMLMind in a Java Application. With my application, I want to > generate a RTF document from a XML file. > I have followed the exemple given and I did it. My RTF document was generated. > However I had some problems: > - the more important is : in my XML source file I have references to > images like this: > <fo:external-graphic src="url(img\\header.gif)"/> > ... > During the process, I get the following warning: > > warning: cannot resolve URI "img\\header.gif" (line #1, column #852) > > The header.gif is on the img folder. The img folder is on the root > folder of my project which is on my classpath. > > - I also have several warnings like this one: > > warning: bad property value border-bottom="0" (line #1, column #9785) >
"url(img\\header.gif)" is not a valid relative *URL*. Please specify "url(img/header.gif)". --- PS: FYI, unlike what happens for C, C++, C#, Java, etc, there is no need to escape the '\' character by doubling it in XML. In XML "\\" is actually 2 '\' characters in a row. -- XMLmind FO Converter Support List [email protected] http://www.xmlmind.com/mailman/listinfo/xfc-support

