-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Halm,

On 10/7/2009 11:44 AM, Halm Reusser wrote:
> Peter Crowther wrote:
>> What are you trying to achieve?  If we know more about the problem you're
>> trying to solve, we may be able to suggest some different approaches.
> 
> The client receives an HTML page with contentType="text/html;
> charset=utf-8"
> 
> On that page is a POST form. When I evaluate the posted data, they are NOT
> utf-8 encoded.

/Most/ clients will act the way you expect, yet, there is no requirement
for them to do so. What client is this, by the way?

See the W3C document for the <form> element, specifically the
"accept-charset" attribute:
http://www.w3.org/TR/html401/interact/forms.html#adef-accept-charset

Read the part about "UNKNOWN" and how clients MAY interpret this as "use
the current page encoding". This is "RFC 'MAY'" which basically means
it's a recommendation, but not at all required.

If you configure your form like this, the client is essentially required
to use your specified encoding if it expects the server to behave correctly:

<form action="..." method="POST" accept-charset="UTF-8">
...
</form>

Give that a try and see what happens.

- -chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkrM0zcACgkQ9CaO5/Lv0PC2UQCgsUN9fcJvaLnQ1x1hTGRo8w0s
nskAoJ+vIkGEdWg5+pQuiDp8yMUcw2CW
=x7+0
-----END PGP SIGNATURE-----

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to