RE: From Unicode to Form and back again

2004-09-08 Thread Huber, Daniel
Instead of that META-hack you'd better use a correct HTTP header. Configure your serializer with mime-type like: map:serializer name=html mime-type=text/html; charset=utf-8 logger=sitemap.serializer.html pool-grow=2 pool-max=64

RE: From Unicode to Form and back again

2004-09-08 Thread Huber, Daniel
And what about your HTML serializer? Which encoding does it use for the form? Thank you Timur, but Volkmar already pointed this out to me. Actually I have to configure two things to put it right. First -- as you suggested -- configure the HTMLSerializer to produce UTF-8 and second put a

Re: From Unicode to Form and back again

2004-09-07 Thread [EMAIL PROTECTED]
Huber, Daniel wrote: [...] I currently build plain HTML forms out of given XML files. As well as the other way round: I save the user input from these forms back to XML file. [...] This behaviour seems to be quite independent of the form-encoding used for RequestGenerator (ISO-8859-1 or UTF-8). Is

RE: From Unicode to Form and back again

2004-09-07 Thread Huber, Daniel
I currently build plain HTML forms out of given XML files. As well as the other way round: I save the user input from these forms back to XML file. [...] This behaviour seems to be quite independent of the form-encoding used for RequestGenerator (ISO-8859-1 or UTF-8). Is there a

Re: From Unicode to Form and back again

2004-09-07 Thread [EMAIL PROTECTED]
Huber, Daniel wrote: I currently build plain HTML forms out of given XML files. As well as the other way round: I save the user input from these forms back to XML file. [...] This behaviour seems to be quite independent of the form-encoding used for RequestGenerator (ISO-8859-1 or UTF-8). Is

RE: From Unicode to Form and back again

2004-09-07 Thread Huber, Daniel
Use set-encoding action in your pipeline: map:pipeline map:act type=set-encoding map:parameter name=form-encoding value=utf-8/ /map:act /map:pipeline OK, I got it working now. Thank you for your hints! For the small example: I had to add meta

Re: From Unicode to Form and back again

2004-09-07 Thread [EMAIL PROTECTED]
Huber, Daniel wrote: Use set-encoding action in your pipeline: map:pipeline map:act type=set-encoding map:parameter name=form-encoding value=utf-8/ /map:act /map:pipeline OK, I got it working now. Thank you for your hints! For the small example: I had to add meta

Re: From Unicode to Form and back again

2004-09-07 Thread Timur Izhbulatov
, 07.09.2004, 14:09, Huber, Daniel : Hi all, I currently build plain HTML forms out of given XML files. As well as the other way round: I save the user input from these forms back to XML file. For the conversion back to XML I use RequestGenerator (with some attached XSLT