Re: html tags in resource bundle

2004-07-10 Thread Juan Alvarado
Great Greg I will give your suggestion a try. Thanks Greg Ludington <[EMAIL PROTECTED]> wrote: One possibility would be to create a forward (local or global) for the Action you wish to link, and then, when you save ActionMessages, create the link, and then pass it as a parametric replacement to

Re: html tags in resource bundle

2004-07-10 Thread Greg Ludington
One possibility would be to create a forward (local or global) for the Action you wish to link, and then, when you save ActionMessages, create the link, and then pass it as a parametric replacement to the message. 1) in struts-config.xml, create a forward that maps to the action link you want in y

html tags in resource bundle

2004-07-10 Thread Juan Alvarado
Hello everyone: I have recently started using struts again and I am a bit rusty so please bear with me. I searched the list for what I need and I didn't find anything. What I need is to display to a user a message in a JSP. This message is pulled from an ApplicationResources.properties file.

Using jsps from another context with tiles

2004-07-10 Thread Carlos Sanchez
Hi, I have several common jsps in a common webapp that I like to share with all the webapps, providing a consistent look'n'feel without needing to rewar all of them. With JSTL (c:import, c:url) I was able to use images and other files from that common context, so doing the same with the tiles defi

Dynamic lookup tag lib (drop down list reverse)

2004-07-10 Thread Michael Mok
Hi all I have created a jsp tag that will look up a collection (of LabelValueBeans) and return the label of the value. For example we store position description in a code table such as Code Description 1Director 2Manager 3Assistant Manager 4Staff In the User tab

Re: use multiple resource bundles in Validator

2004-07-10 Thread Cliff
Thanks a lot. I can do it in jsp but not in validation.xml. I can find bundle is used in http://jakarta.apache.org/commons/dtds/validator_1_1.dtd but it seems cannot work. I'm now try to update the common-validator and try to check what bundle struts is using in JavascriptValidatorTag.java.

[oot?] x:parse & x:transform gives Content not allowed in prolog err.

2004-07-10 Thread Johan Wasserman - BCX - Infrastructure Services
I realy hope someone can help (error and code below). I'm using the latest SAX (sax2r3 downloaded from SF today). Editor is Eclipse 3. Tomcat 5 on Apache via modjk2. I get the following error, doesnt' matter what I try: -- javax

Re: OT:SOLUTION:Re: Why Ajp13Connector.class is not found in tomcat-jk.jar inTomca 5.x but in Tomca 4.x

2004-07-10 Thread Christopher Marsh-Bourdon
This guy constantly asks questions in the same manner, isn't there a way to prevent repeat offenders posting? Christopher On 10/7/04 15:05, "Bryan Hunt" <[EMAIL PROTECTED]> wrote: > I know the solution, for u *NIX users > > vi ~/.procmailrc > > snip= > :0 h > *^Subject:.*I can't bother my

OT:SOLUTION:Re: Why Ajp13Connector.class is not found in tomcat-jk.jar inTomca 5.x but in Tomca 4.x

2004-07-10 Thread Bryan Hunt
I know the solution, for u *NIX users vi ~/.procmailrc snip= :0 h *^Subject:.*I can't bother my ass looking on google so I send noise to the list /dev/null =snip --b Robert Taylor wrote: http://jakarta.apache.org/site/mail2.html#Tomcat -Original Message- From: ganesh gadi [ma

RE: Why Ajp13Connector.class is not found in tomcat-jk.jar inTomca 5.x but in Tomca 4.x

2004-07-10 Thread Robert Taylor
http://jakarta.apache.org/site/mail2.html#Tomcat > -Original Message- > From: ganesh gadi [mailto:[EMAIL PROTECTED] > Sent: Saturday, July 10, 2004 6:31 AM > To: Struts Users Mailing List > Subject: Why Ajp13Connector.class is not found in tomcat-jk.jar inTomca > 5.x but in Tomca 4.x > >

RE: Dynamic extension of web apps

2004-07-10 Thread Michael McGrady
Struts has the mechanism to do this too, by the way. What I do is to define tiles, e.g. "html_page", "wap_page", and then reference just "page" in the struts-config.xml. You have the controller detect the device coming in and switch the tiles reference as required. This can also be used, by

Why Ajp13Connector.class is not found in tomcat-jk.jar inTomca 5.x but in Tomca 4.x

2004-07-10 Thread ganesh gadi
Hi List, i'm using Tomcat 5.0.19 server. I need to connect Ajp13Connector through Tomcat 5.0.19 I configured in Tomcat. But while i'm running ,NoClassDefFoundException is getting.i.e.,Ajp13Connector.class is not available in "tomcat-jk.jar" But the class is available in Tomcat 4.x in the same j

Why Ajp13Connector.class is not found in Tomca 5.x but in Tomca 4.x

2004-07-10 Thread ganesh gadi
Hi List, I need to connect Ajp13Connector through Tomcat 5.0.19 I configured in Tomcat. But while i'm running ,NoClassDefFoundException is getting.i.e.,Ajp13Connector.class is not available in "tomcat-jk.jar" But the class is available in Tomcat 4.x in the same jar file(tomcat-jk.jar). Why didn'

Re: Testing for con.close()

2004-07-10 Thread Peng Tuck Kwok
Hi, Usually I call con.close() in the final block. There is a mention of this here : http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-datasource-examples-howto.html#Common%20Problems On Sat, 10 Jul 2004 10:54:31 +0530, Shailender Jain <[EMAIL PROTECTED]> wrote: > Hi, > > I have implemented