: I'm querying with an accented keyword such as "caf�" but the debug info : shows that it is only searching for "caf". I'm using the ISOLatin1Accent ... : http://localhost:8983/solr/select?q=%E9&debugQuery=true : : Params return shows this: : <lst name="params"> : <str name="q"/>
...that's a pretty good tip off that you aren't URL encoding the character they way your servlet container is expecting it. I suspect what you really want is... http://localhost:8983/solr/select?q=%C3%A9&debugQuery=true -Hoss