Hi! I would like to print a pdf document which contain hungarian characters.
I started to configure my enviroment like this: http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html And after ttha a followed this site descriptions: http://cocoon.apache.org/2.1/userdocs/pdf-serializer.html But it is not working, i can see this charaters "#' yet... This is my sitemap.xmap: <?xml version="1.0" encoding="UTF-8"?> <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0"> <map:components> <map:serializers default="fo2pdf"> <map:serializer name="fo2pdf" src="org.apache.cocoon.serialization.FOPSerializer" mime-type="application/pdf"> <user-config src="D:/fop-fonts/config.xml"/> </map:serializer> <map:serializer name="xml" src="org.apache.cocoon.serialization.XMLSerializer" mime-type="text/xml"> <encoding>UTF-8</encoding> </map:serializer> <map:serializer name="fo2rtf" src="org.apache.cocoon.serialization.RTFSerializer" mime-type="application/msword"> </map:serializer> </map:serializers> </map:components> <map:pipelines> <map:pipeline internal-only="true"> <map:match pattern="xml"> <map:generate type="stream"> <map:parameter name="form-name" value="xml"/> <map:parameter name="defaultContentType" value="application/x-www-form-urlencoded"/> </map:generate> <map:serialize type="xml"/> </map:match> <map:match pattern="xsl"> <map:generate type="stream"> <map:parameter name="form-name" value="template"/> <map:parameter name="defaultContentType" value="application/x-www-form-urlencoded"/> </map:generate> <map:serialize type="xml"/> </map:match> </map:pipeline> <map:pipeline> <map:match pattern="end"> <map:generate type="stream"> <map:parameter name="form-name" value="vXML"/> <map:parameter name="defaultContentType" value="application/x-www-form-urlencoded"/> </map:generate> <map:transform src="test.xsl"/> <map:serialize type="fo2pdf"/> </map:match> <map:match pattern="*"> <map:generate src="cocoon:/xml"/> <map:transform src="cocoon:/xsl"/> <map:select type="request-parameter"> <map:parameter name="parameter-name" value="_xf"/> <map:when test="rtf"> <map:serialize type="fo2rtf"/> </map:when> <map:otherwise> <map:serialize type="fo2pdf"/> </map:otherwise> </map:select> </map:match> </map:pipeline> </map:pipelines> </map:sitemap> Thank you, and sorry my english skill...
