Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Mark Thomas
Christopher Schultz wrote: Steve, Steve Ochani wrote: | From:Raghuveer <[EMAIL PROTECTED]> |> |> I had requirement of retrieving the login details like user_id, name |> from parent web application. |> |> At present I am retrieving by . |> |> request.getParameter("user_id") |> |> request.getP

Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, Steve Ochani wrote: | From: Raghuveer <[EMAIL PROTECTED]> |> |> I had requirement of retrieving the login details like user_id, name |> from parent web application. |> |> At present I am retrieving by . |> |> request.getParameter("user_id") |>

Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Mark Thomas
Raghuveer wrote: What changes i need to make in my JSP Struts web application in order to retrieve the polish characters In addition to any struts configuration, you'll need to set the URIEncoding on the connector. Mark -

Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Steve Ochani
Date sent: Wed, 18 Jun 2008 20:27:14 +0530 From: Raghuveer <[EMAIL PROTECTED]> Subject: Retriving polish characters from URL Query string in TOMCAT Server To: 'Tomcat Users List' Send reply to: Tomcat Users List Send reply to: [EMAIL PROTECTED] Org

Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Raghuveer
I had requirement of retrieving the login details like user_id, name from parent web application. At present I am retrieving by . request.getParameter("user_id") request.getParameter("name") Some times names can be in Polish language from parent web application. What changes i n