Thats interesting - Ideally Id like to keep a lean memory footprint
and it strikes me that jetty would be the lightest of all the various
options? Is that a fair assumption? Excuse my ignorance; I've never
done a deployment to production on Jetty so know very little about
it... :)
Cheers!
Tim
On Mar 27, 9:44 pm, David Bernard <david.bernard...@gmail.com> wrote:
> http://demo.liftweb.net/are running under jetty
This is most likely because the default encoding for HTTP is US-ASCII.
In the past, I've found the best way of making sure your forms are
handled as UTF-8 is to encode it into the document's meta headers.
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
for whatever your Content-Type is.
Steve