Re: prepopulating jsp page

2005-09-29 Thread Cedric Levieux
= new CreateClientForm(); updateForm.setClientName(...); // bla bla bla and request.getSession().setAttribute("createClientForm", updateForm); normally, it works, Cedric Cedric Levieux wrote: Hi, Did you put the new form into session or into whatever-the-scope-of-the-form-must-be

Re: prepopulating jsp page

2005-09-29 Thread Cedric Levieux
Hi, Did you put the new form into session or into whatever-the-scope-of-the-form-must-be ? If not, the error may come from that Regards, Cedric [EMAIL PROTECTED] wrote: Hi, I am trying to pre-populate my JSP page with the values returned from the database when a user edits a client. I hav

Re: use bean:message tag for configurable parameters?

2005-09-28 Thread Cedric Levieux
Your problem is a tricky one, so don't worry key='selectbox.size'/> Cedric Raghu Kanchustambham wrote: Hi, When I use the following line...it prints a 4 on the screen. { selectbox.size has been defined as 4 in application.properties file } However, the following code doesnt seem to

Re: automatic periodic execution of code

2005-02-16 Thread Cedric Levieux
Thanks for the Quartz project, I'll try it. for the moment I've got my own Thread Management system but using "standard" is for me a better thing. I hope that whan I'll stop tomcat Quatrz will shutdown too in a short time. Thx, Cedric - Original Message - From: "Andrew Hill" <[EMAIL PR

Re: [ANN] Free JSP Editor for Eclipse

2005-02-04 Thread Cedric Levieux
truts capabilities won't be enabled for - only the JSP Editor. I hope this helps. Sorry for the inconvenience. -Carlos > -Original Message- > From: Cedric Levieux [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 03, 2005 12:46 AM > To: Struts Users Mailing List > S

Re: Avoid resubmit

2005-02-03 Thread Cedric Levieux
You can have in your own page a js code that active a boolean after your first submit and disable your submit button. Just my 2 cents, Cedric - Original Message - From: "Anthony Hong" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, February 03, 2005 3:28 PM Subject:

Re: Avoid resubmit

2005-02-03 Thread Cedric Levieux
By using the Token system - Original Message - From: "Kalluru Uma. Maheswar" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, February 03, 2005 12:42 PM Subject: Avoid resubmit Hi, I have a form with a simple text box and a text area. The user enters some informatio

Re: [ANN] Free JSP Editor for Eclipse

2005-02-03 Thread Cedric Levieux
ion key via email? Thanks, -Carlos > -----Original Message- > From: Cedric Levieux [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 02, 2005 2:40 PM > To: Struts Users Mailing List > Subject: Re: [ANN] Free JSP Editor for Eclipse > > Two things: > > First, my Ecli

Re: [ANN] Free JSP Editor for Eclipse

2005-02-02 Thread Cedric Levieux
Two things: First, my Eclipse has its name changed and I'm a bit angry with that Second, does it ask me for a serial when I launch my Eclipse and it has a lot of problem to be launched ? Regards, Cedric - Original Message - From: "Carlos Chang" <[EMAIL PROTECTED]> To: "Struts Users Mai

Re: Regarding LOGIC tags

2005-02-01 Thread Cedric Levieux
and that's why I have my own tags to make this kind of tests between my beans :p - Original Message - From: "Kishore Senji" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, January 27, 2005 7:55 AM Subject: Re: Regarding LOGIC tags > On Thu, 27 Jan 2005 10:48:47 +053

Re: struts and java script and jsp

2005-02-01 Thread Cedric Levieux
Hi, You have this JavaScript code cause you ask into the tag the ability to focus on a form field. But btw I don't understand why the javascript code didn't work :p Regards, Cedric - Original Message - From: "Nadia Kunkov" <[EMAIL PROTECTED]> To: "Struts help (E-mail)" Sent: Tuesday,

Re: Popup window submitting to action

2005-01-27 Thread Cedric Levieux
Here what you want in the page retrieved after the submit action and reached via this action : Regards, Cedric - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Thursday, January 27, 2005 4:34 PM Su

Re: Advise How to set alternative raow background color

2005-01-27 Thread Cedric Levieux
Personnaly for this kind of stuff i've got my own tag that have the hability to iterate and to cycle over given values. - Original Message - From: "Kishore Senji" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, January 27, 2005 8:26 AM Subject: Re: Advise How to set a

Re: [OT] a java question

2005-01-26 Thread Cedric Levieux
public MyClass { private boolean isInitialzed = false; private static String data; public static String getData() { return data; } public static setData(String input) { if (! isInitialzed) { data = input; isInitialzed = true; } } } - Original Messag

Re: PlugIn and the base URL

2005-01-26 Thread Cedric Levieux
> My Struts app contains an Axis-based SOAP service. The Struts app > initializes the call dispatcher for the SOAP service. This dispatcher > needs to know the URL of itself. This is a requirement of the semantics > of the SOAP service (outside of my control). So a Listener or a Plug In > appea

Re: A table on a form from a List of Lists

2005-01-25 Thread Cedric Levieux
i dont think html:text works without a > property attribute > > - Original Message - > From: "Cedric Levieux" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > Sent: Tuesday, January 25, 2005 5:2

Re: A table on a form from a List of Lists

2005-01-25 Thread Cedric Levieux
. > ----- Original Message - > From: "Cedric Levieux" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" ; "Hubert Rabago" > <[EMAIL PROTECTED]> > Sent: Tuesday, January 25, 2005

Re: Reloading plugin

2005-01-25 Thread Cedric Levieux
what happens if the server dies ? I will lose the configuration ? Will the accessors modify my struts-config.xml ? I don't think they will . Ovidiu On Tue, 25 Jan 2005 15:54:44 +0100, Cedric Levieux <[EMAIL PROTECTED]> wrote: > why in database ? > > public class XxxP

Re: Reloading plugin

2005-01-25 Thread Cedric Levieux
The thing is that the application must be running without any > > interupption. I was thinking about a plugin that watches over the > > other ones inspecting the struts-config file from time to time and > > compare the plugin configurations with the ones alredy loaded. > > Any ideas ?

Re: A table on a form from a List of Lists

2005-01-25 Thread Cedric Levieux
Hi, There is a way : Regards, Cedric - Original Message - From: "Olasoji Ajayi" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" ; "Hubert Rabago" <[EMAIL PROTECTED]> Sent: Tuesday, January 25, 2005 3:25 PM Subject: Re: A table

Re: Reloading plugin

2005-01-25 Thread Cedric Levieux
Hi, Go to the manager tomcat system and you can stop/start/restart application by application ... but it need to stop the application. The other possibility is to implement your own web admin system for configuring your plugins, replacing the values inside by setters. Hope it can help, Cedric