RE: Tomcat special character problem

2010-11-09 Thread Em
The problem was firstly the wrong URIEncoding of tomcat itself. The second problem came from the application's side: The params were wrongly encoded, so it was not possible to show the desired results. If you need to convert from different encodings to utf8, I can give you the following piece of

RE: Tomcat special character problem

2010-11-08 Thread Yuval Feinstein
-Original Message- From: Dennis Gearon [mailto:gear...@sbcglobal.net] Sent: Sunday, November 07, 2010 10:55 PM To: solr-user@lucene.apache.org Subject: Re: Tomcat special character problem In a post document, or a get document with URL encoded variables in the BODY of the document, it's pos

Re: Tomcat special character problem

2010-11-07 Thread Dennis Gearon
l die. - Original Message From: Michael Sokolov To: solr-user@lucene.apache.org Cc: Em Sent: Sun, November 7, 2010 12:40:45 PM Subject: Re: Tomcat special character problem Is it possible that your original search is being posted (HTTP POST), and the character encoding of the page wi

Re: Tomcat special character problem

2010-11-07 Thread Em
I also thought that this might be the case a few hours ago. However, I have to verify that tomorrow. >From a debugging point of view: How can I set the encoding of my browser's adress-bar? When I pressed enter the encoding switched from clear-text to an urlencoded version. The urlencoded version

Re: Tomcat special character problem

2010-11-07 Thread Michael Sokolov
Is it possible that your original search is being posted (HTTP POST), and the character encoding of the page with the form is not UTF-8? In that case, I believe a header gets sent with the request specifying a different character set (different from parameters in the URL, for which it's not p

Re: Tomcat special character problem

2010-11-07 Thread Em
This helped a lot, since it solved the "göteburg"-problem. Thank you, Ken! Great help :-). Unfortunately there are some other encoding problems "fq=testcat%3Aacôme" worked, however the full url-encoded version "fq=testcat%3Aac%F4me" does not. The first version is the result of submitting the f

Re: Tomcat special character problem

2010-11-07 Thread Ken Stanley
On Sun, Nov 7, 2010 at 9:34 AM, Em wrote: > > Hi Ken, > > thank you for your quick answer! > > To make sure that there occurs no mistakes at my application's side, I send > my requests with the form that is available at solr/admin/form.jsp > > I changed almost nothing from the example-configurati

Re: Tomcat special character problem

2010-11-07 Thread Em
Hi Ken, thank you for your quick answer! To make sure that there occurs no mistakes at my application's side, I send my requests with the form that is available at solr/admin/form.jsp I changed almost nothing from the example-configurations within the example-package except some auto-commit par

Re: Tomcat special character problem

2010-11-07 Thread Ken Stanley
On Sun, Nov 7, 2010 at 9:11 AM, Em wrote: > > Hi List, > > I got an issue with my Solr-environment in Tomcat. > First: I am not very familiar with Tomcat, so it might be my fault and not > Solr's. > > It can not be a solr-side configuration problem, since everything worked > fine with my local Je