> I tried to change this in cocoon.xconf:
Ups... I was talking about the sitemap
>
>
>
>
>
> ...but this throws a ConfigurationException
>
> Any idea?
I have had look... it must be
ISO-8859-1
Now it works...
--
Torsten
---
Shouldn't the request parameters be UTF-8 encoded
by default?!
In our forms we need to use some German characters.
But the only way I can save them is to translate them
by myself.
String p = request.getParameter("whatever");
if (p != null){
byte[] s = p.getBytes("8859_1");
String v