RE: Getting a request in a non English character

2004-04-25 Thread Yair Fine
Mark , Sorry for nagging you )-; but this is exacly what I did : //THE CLIENT: import java.io.*; import java.net.*; public class HttpClientHebrew5Test { public static void main(String[] args) { try { String host = "127.0.0.1"; String port = "8083";

Re: Getting a request in a non English character

2004-04-25 Thread Paul Gregoire
TED] Sent: Sunday, April 25, 2004 6:28 PM To: [EMAIL PROTECTED] Subject: RE: Getting a request in a non English character Mark, Your client and servlet works!! Thanks. Now I have only one request, I tried to modify the client, that instead of preparing a predefined line: String da

RE: Getting a request in a non English character

2004-04-25 Thread Mark Thomas
Try specifying the encoding in your client as as "windows-1255" Mark > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Sunday, April 25, 2004 6:28 PM > To: [EMAIL PROTECTED] > Subject: RE: Getting a request in a non English cha

RE: Getting a request in a non English character

2004-04-25 Thread yair . fine
String data = URLEncoder.encode(line, "cp1255"); And this some how doesn't work , Any suggestions? Regard Yair -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Sunday, April 25, 2004 5:09 PM To: &#

RE: Getting a request in a non English character

2004-04-25 Thread Mark Thomas
} catch (Exception e) { e.printStackTrace(); } } } > -Original Message- > From: Yair Fine [mailto:[EMAIL PROTECTED] > Sent: Sunday, April 25, 2004 12:16 AM > To: [EMAIL PROTECTED] > Subject: RE: Getting a request in a non English cha

RE: Getting a request in a non English character

2004-04-24 Thread Yair Fine
} catch (Exception e) { e.printStackTrace(); } } } BTW, One more thing , I modified /conf/server.xml and added attribute URIEncoding="cp1255" useBodyEncodingForURI="true" It still don't work Yair -Original Message---

RE: Getting a request in a non English character

2004-04-20 Thread Mark Thomas
> To: 'Tomcat Users List' > Subject: RE: Getting a request in a non English character > > Hi Mark, > Thanks for your reply , > You wrote : > "The Coyote HTTP/1.1 connector has a useBodyEncodingForURI attribute > which if set to true will use the request bo

RE: Getting a request in a non English character

2004-04-20 Thread Yair Fine
anks Yair -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: ג 20 אפריל 2004 21:19 To: 'Tomcat Users List' Subject: RE: Getting a request in a non English character You might find the text below useful. It is my standard text on character encoding. Mark REQU

RE: Getting a request in a non English character

2004-04-20 Thread Mark Thomas
You might find the text below useful. It is my standard text on character encoding. Mark REQUESTS There are a number of situations where there may be a requirement to use non-US ASCII characters in a URI. These include: - Parameters in the query string - Servlet paths There is a standa

RE: Getting a request in a non English character

2004-04-20 Thread Yansheng Lin
4 10:46 To: [EMAIL PROTECTED] Subject: RE: Getting a request in a non English character Thanks, But I tried and it doesn't work Is it because it is in the GET request and not in POST Maybe Tomcat don't know how to deal with Charset Cp1255 requests? -Original Message- From:

RE: Getting a request in a non English character

2004-04-20 Thread yair . fine
mcat Users List' Subject: RE: Getting a request in a non English character Hi, I don't have that book, so I am not sure if there is a new version. But I think you can try one of the constructors in the String class. String value = req.getParameter("param"); String valueInUnico

RE: Getting a request in a non English character

2004-04-20 Thread Yansheng Lin
Hi, I don't have that book, so I am not sure if there is a new version. But I think you can try one of the constructors in the String class. String value = req.getParameter("param"); String valueInUnicode = new String(value.getBytes("Cp1255"), "UTF8"); -Yan -Original Message- From: [EM