You should set uriEncoding="UTF-8" in your application server. For tomcat
you can do that in the server.xml. For Glassfish you have to create a
sun-web.xml containing the according parameters. Yoy r application server
should provide a similar mechanism.
Uwe
On Mon, Mar 31, 2008 at 4:32 PM, Daniel
Hi Daniel,
the following topic might help (at least it did the trick for me using
german chararcters)
http://wiki.apache.org/solr/FAQ - Why don't International Characters Work?
So I wrote the following servlet (taken from Wiki/mailing list)
import org.apache.solr.servlet.SolrDispatchFilter;
Send the URL with the å character URL encoded as %C3%A5. That is the
UTF-8 URL encoding.
http://myserver:8080/solrproducts/select/?q=all_SV:ljusbl%C3%A5+status:online&fl=id%2Cartno%2Ctitle_SV%2CtitleSort_SV%2Cdescription_SV%2C&sort=titleSort_SV+asc,id+asc&start=0&q.op=AND&rows=25
-Sean
Danie