Re: tomcat exception caused by x-tags

2004-05-19 Thread Emmanuil Batsis (Manos)
I dont really know what the problem is, but it seems like the (SAX?) parser reading the XML has XML namespaces feature turned off. Should be configurable somewhere? Klimenko, Mariya wrote: I am working on struts application on eclipse. I need to display xml file marshalled by an action through

Re: How to access Resource bundle from filter?

2004-03-12 Thread Emmanuil Batsis (Manos)
ResourceBundle myResources = ResourceBundle.getBundle("foo", locale); Keith Hyland wrote: Hi, How do I access the resource bundle used by the tags from a filter (or servlet). Cheers, Keith - To unsubscribe, e-mail: [EMAI

Re: fmt_rt encoding trouble

2003-12-03 Thread Emmanuil Batsis (Manos)
t sounds like you're already doing something like: <%@ page pageEncoding="UTF-8" %> right? I suppose you could see if using a Filter to do: request.setCharacterEncoding("UTF-8"); has any effect. Or try configuring your browser to explicitly use Unicode or Greek encodi

Re: fmt_rt encoding trouble

2003-12-03 Thread Emmanuil Batsis (Manos)
I seem to understand the problem somewhat better now, so my question is, how do I use an encoding like UTF-8 or ISO-8859-7 without the taglib reseting it each time i use a tag like fmt_rt:message? Emmanuil Batsis (Manos) wrote: Hi, I'm using a greek bundle like and then a message

fmt_rt encoding trouble

2003-12-03 Thread Emmanuil Batsis (Manos)
Hi, I'm using a greek bundle like and then a message like but the result prints mostly question marks... The encoding of the resource bundle, the JSP file and the JSP response is UTF-8. If any non-english user could share some insight it would be of great help. Thanks, Manos --

need a scope/visibility example (newbie)

2003-03-06 Thread Emmanuil Batsis (Manos)
Hi folks, Can someone please tell me how to make the following expression evaluate correctly? I know I have to check with the documentation but I'm under pressure and can't figure it out right now... Thanks, Manos - To uns