DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=32500>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32500


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |




------- Additional Comments From [EMAIL PROTECTED]  2004-12-03 22:50 -------
(In reply to comment #8)

Well, I had to install and configure a new version of the database to check
the bad-database-encoding-theory (it did not resolve anything, of course).

Ignore the database: same problem persists even in a code that does not
involve database operation:

   News news = new News ();
   news.setContent ("è÷ñè áòáøéú"); // some hebrew text string
   request.setAttribute ("news", news);
   RequestDispatcher dispatcher = ctx.getNamedDispatcher ("JSPBugPage");
   dispatcher.forward (request, response);

The issue is that I according to what you're saying, I must use:

   news.setContent (new String (new String ("è÷ñè áòáøéú")).getBytes 
(), "windows-1255"); // some hebrew text string there between the double-quotes

Or in other words - do the conversion manually for each and every string
variable I need to pass to the JSP page, instead of having the JSP page
convert them automatically.


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to