> A html serialized page contains the following link:
> <p><a href="genXmlRequest?para=ö">LINK</a></p>
>
> The pipeline of genXmlRequest looks like follows:
> <map:match type="wildcard" pattern="genXmlRequest">
> <map:generate type="request"/>
> <map:serialize type="xml"/>
> </map:match>
>
> But the result in the <h:request/> looks as follows.
> <h:parameter name="para">
> <h:value>ö</h:value>
> </h:parameter>
>
> It seems that the utf-8 encoded char 'ö' = '%C3%B6' is not
> handled correctly
> by request generator. Is this a bug or can I do anything against it?
In the
<map:serializers>
section of your sitemap, you can set the output encoding of the
serializer, e.g.
<map:serializer logger="sitemap.serializer.xml" mime-type="text/xml" name="xml"
src="org.apache.cocoon.serialization.XMLSerializer">
<encoding>UTF-8</encoding>
</map:serializer>
cheers, John
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]