validator framework / multibox and javascript validation

2004-03-09 Thread harm
/formset I have the following JSP: html:javascript formName=autoForm onsubmit=return validateSimpleForm(this);/ html:form action=/test html:multibox property=selectedItems bean:write name=car property=id/ /html:multibox /html:form Thanks, Regards, Harm de Laat Informatiefabriek

ServletContextListener init parameters

2004-03-02 Thread harm
? Your help is highly appreciated. Regards, Harm de Laat Informatiefabriek The Netherlands.

RE: ServletContextListener init parameters

2004-03-02 Thread harm
Thanks Robert for this quick anwser. This solved my problem. However. Is there a possibility to access context-params from a JSP page? Thanks, Regards, Harm de Laat Informatiefabriek The Netherlands Robert Taylor [EMAIL PROTECTED] 02-03-2004 13:43 Please respond to Struts Users Mailing

Validator Framework Value Object ActionForm

2003-11-20 Thread harm
nl.informatiefabriek.addressbook.value.ContactValue; import org.apache.struts.action.ActionForm; /** * @author harm * * @struts.form name = contactForm */ public class ContactForm extends ActionForm { private ContactValue contactValue = new ContactValue(); /** * @return Returns the contactValue

Which framework to choose?

2003-11-18 Thread harm
Struts for some time now... But maybe some other framework has more future then Struts. I would like to hear your opionions... Thanks, Regards, Harm de Laat Informatiefabriek The Netherlands - To unsubscribe, e-mail

Re: xdoclet strutsconfigxml thingy

2003-11-12 Thread harm
=request */ public class ChangeStateAction extends BaseAction { // your class } Good luck, Regards, Harm de Laat Informatiefabriek The Netherlands Caoilte O'Connor [EMAIL PROTECTED] 11/12/2003 01:11 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To Struts Users Mailing

Re: xdoclet strutsconfigxml thingy

2003-11-12 Thread harm
You can easily set the destination directory for your struts-config.xml. So you can have many different sub-apps... Regards, Harm de Laat Informatiefabriek The Netherlands Caoilte O'Connor [EMAIL PROTECTED] 11/12/2003 01:55 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED

RE: ejb's and tomcat

2003-10-10 Thread harm
in production. I definitly think it's a good product, and for sure no 'crap'. Especially if you see what you get for *free*. Compare this to the prices asked for BEA's or IBM's application server. Regards, Harm de Laat Informatiefabriek The Netherlands Mark Galbreath [EMAIL PROTECTED] 10

RE: ejb's and tomcat

2003-10-09 Thread harm
, Harm de Laat Informatiefabriek The Netherlands Brian McSweeney [EMAIL PROTECTED] 10/09/2003 03:37 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To 'Struts Users Mailing List' [EMAIL PROTECTED] cc Subject RE: ejb's and tomcat I agree, but I was responding to your

html:submit

2003-10-07 Thread harm
/store_correction.do'; class=button How can I achieve this? Thank you very much, Harm de Laat Informatiefabriek The Netherlands - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

how to keep developing time as short a possible?

2003-10-07 Thread harm
as short as possible? Many thanks, Harm de Laat Informatiefabriek The Netherlands - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

internationalized date

2003-10-02 Thread harm
version of the date (Dutch standard format). What is a good way of achieving this? Many thanks, Harm de Laat Informatiefabriek The Netherlands - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

error page

2003-09-26 Thread harm
Hi all, I would like to display an error page if some weird exception occurs in my code. (Maybe a RemoteException or a NullPointer). I don't like Tomcat's default error page. Is there something I can change in struts-config.xml to create a custom error page? Thanks, Harm de Laat

RE: error page

2003-09-26 Thread harm
a RemoteException or a NullPointer). I don't like Tomcat's default error page. Is there something I can change in struts-config.xml to create a custom error page? Thanks, Harm de Laat Informatiefabriek The Netherlands - To unsubscribe, e-mail

Bean population question (Urgent)

2003-09-19 Thread harm
nl.informatiefabriek.om.correction.value.CorrectionValue; import org.apache.struts.action.ActionForm; /** * @author harm * * @struts.form * name = deleteCorrectionForm */ public class DeleteCorrectionForm extends ActionForm { private String id; private CorrectionValue correctionValue

RE: Bean population question (Urgent)

2003-09-19 Thread harm
snip Awww g. Thats too bad. My heart bleeds for you. Join the club mate. /snip Okay, got the point! ;-) But you will be happy to know your suggestion solved the problem. Thanks a lot Cheers, Harm de Laat Informatiefabriek Andrew Hill [EMAIL PROTECTED] 09/19/2003 11:57 AM Please

RE: Dateformat for MSSQL DB

2003-09-15 Thread harm
I think you should not use this class. I has some bugs in it Mohd Amin Mohd Din [EMAIL PROTECTED] 09/15/2003 12:11 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To 'Struts Users Mailing List' [EMAIL PROTECTED] cc Subject RE: Dateformat for MSSQL DB This is a

Question about ActionForm

2003-09-10 Thread harm
): import nl.xbase.group.value.GroupValue; import nl.xbase.management.struts.action.BaseForm; /** * @author harm * * @struts.form * name = groupForm */ public class GroupForm extends BaseForm { private GroupValue groupValue = new GroupValue(); /** * @return

Re: getproperty for html:options tag returns null.

2003-09-10 Thread harm
You can always check if its empty with the logic:empty tag. Good luck, Harm. deepaksawdekar [EMAIL PROTECTED] 09/10/2003 01:26 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To Struts Users Mailing List [EMAIL PROTECTED] cc Subject getproperty for html:options tag

Re: What's the best way to do calculations ?

2003-09-10 Thread harm
Java Bean. Cheers, Harm. Jeff Kyser [EMAIL PROTECTED] 09/10/2003 01:35 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To Struts Users Mailing List [EMAIL PROTECTED] cc Subject Re: What's the best way to do calculations ? Depends on your calculations. I wouldn't do

Re: dependant drop down list box

2003-09-10 Thread harm
If you already have it in the request object, you might want to consider using javascript. Maybe you can put the values of you second dropdown list in a html:hidden component. Then use javascript to populate the second dropdownlist whenever the user changes the first one. [EMAIL PROTECTED]

simple question

2003-09-08 Thread harm
) to pass the categories to my JSP page. In my JSP page I use the logic:iterate tags to iterate through te collection and display the proper information. Is this a normal / good approach? Or do I have to use ActionForm classes for this purpose? Thanks a lot, Harm de Laat Informatiefabriek

force servlet read re-read init parameters

2003-08-20 Thread harm
Hi all, Is there some way 'in code' to force a servlet to re-read it's init parameters. Right now I have to restart my HTTP-container each time these init parameters change Thanks a lot, Harm de Laat Informatiefabriek The Netherlands

redirecting problem

2003-08-10 Thread harm
like to do the checking. And redirect the user to the correct page. I cannot use something like this: return (mapping.findForward(overview)); because the redirection page is dynamic. Any ideas on how to achieve this? Thanks a lot, Harm de Laat Informatiefabriek The Netherlands

include javascript (urgent)

2003-07-07 Thread harm
doing wrong. And what should I do to correct it? Thanks, Harm de Laat Informatiefabriek - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Struts Menu question

2003-06-17 Thread harm
Yes, ofcourse You can do this in your actions or in jsp (using struts logic tags, or use JSTL). Cheers, Harm de Laat Informatiefabriek The Netherlands Filip Polsakiewicz [EMAIL PROTECTED] 06/17/2003 10:01 AM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To Struts

Re: Displaying an object stored in the http session

2003-06-17 Thread harm
the garbage collector picks it up and destroys the object. Good luck, Harm de Laat Informatiefabriek The Netherlands Brian McSweeney [EMAIL PROTECTED] 06/17/2003 05:17 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Subject Displaying an object stored

Re: Message Resources Problem?

2003-06-13 Thread harm
Hi Marc, I have pretty much the same configuration as you do (jboss, struts, jdk1.4.1). I don't know what is causing your exceptions. But I can tell you that I don't suffer the same problem. So my guess is that something is wrong. Sorry, can't help you any further. Cheers, Harm. Marc

log4j in struts application

2003-06-05 Thread harm
INFO [OrdermanagerBaseAction] OrderManagerBaseAction called! But, nothing appears in /var/ordermanager/log/ordermanager.log Permissions, etc are all okay What could be wrong here? Many thanks, Harm de Laat Informatiefabriek The Netherlands

logic:redirect question

2003-06-05 Thread harm
: logic:notPresent name=user logic:redirect href=http://wonen.dev.mediatoolbox.nl/ /logic:notPresent As you can see, I hard-coded the redirection URL into the JSP. But I don't want hardcode this URL. Are there any possibilities to maybe get this from a properties file? Thanks, Harm de Laat

How to change label on a html:file button

2003-05-29 Thread harm
. Can anybody please help, or give me some directions? Many thanks, Harm de Laat Informatiefabriek The Netherlands - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]