RE: Struts Editing in IDE

2006-06-05 Thread Andy Dailey
I am not against paying for the capabilities. I am very familiar with struts and comfortable hand keying the whole thing. The issue I am trying to address is the best tool I can give/suggest to my co-workers that after a bit of explanation on what goes on behind the scenes (in the black or may

Struts Editing in IDE

2006-06-05 Thread Andy Dailey
I have been using struts for quite a while now (4 years) and am wondering if there are any decent drag and drop capabilities within any of the current IDE's that allow easy development of applications using struts. I am already familiar with jDeveloper's support. I would like to see what this com

RE: [OT] Web application for pushing contents

2006-03-22 Thread Andy Dailey
This is not a push but a pull. But you can set the browser using javascript as such: document.onload=window.setTimeout('window.location=window.location', 720 ); This would time out the page after 2 hours and refresh itself. Just make sure the session timeout is greater than 2 hours... Hope

RE: validate indexed properties

2006-02-23 Thread Andy Dailey
Here is an one example of what the validation.xml would look like In jsp: In validation.xml: maxlength 6 minlength 6 -Original Message- From: Juergen Schmailzl [mailto:[EMAIL PROTECTED] Sent: Thursday, Februa

RE: Regarding Log4j

2005-12-28 Thread Andy Dailey
Not sure if this is the correct way to do it, but edit catalina.bat file in the bin directory and add the log4j part below: in catalina.bat: set CATALINA_OPTS=%CATALINA_OPTS% -Dsun.io.useCanonCaches=false -Dlog4j.configuration=log4j.xml If that does not work, I would check the log4j mailing list.

RE: [OT] html:text field is getting truncated

2005-04-26 Thread Andy Dailey
:[EMAIL PROTECTED] > Sent: Tuesday, April 26, 2005 11:40 AM > To: Struts Users Mailing List > Subject: RE: [OT] html:text field is getting truncated > > > so you're saying that: > > > > and > > > > are rendered the same size on your browse

[OT] html:text field is getting truncated

2005-04-26 Thread Andy Dailey
This looks to be an html issue and not a struts issue. I have a problem where I have an html:text field on my jsp that will not allow me to set the size of the displayed input field. The value that should be displayed is PRM,WS,CORNER,24X48 The value that is displayed is PRM,WS,CORNER,24 with the

RE: OT: JDeveloper trouble

2005-03-01 Thread Andy Dailey
Not sure if it is related or of use, but my jDeveloper failed to run after some patches were applied to my XP operating system. Turns out that the JAVA_HOME was not getting read from the system environment variable and I had to change the jdev/bin/jdev.conf file to set the JAVA_HOME on startup. F

RE: [OT] Auto comment generation

2005-02-17 Thread Andy Dailey
netbeans has this feature. www.netbeans.org > -Original Message- > From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 17, 2005 1:05 PM > To: user@struts.apache.org > Subject: [OT] Auto comment generation > > > Anyone know of a tool (Eclipse plug-in perhaps

RE: NullPointerException, how to determine cause?

2005-01-19 Thread Andy Dailey
Stack trace will give the line numbers if you compile with debug="on" in the ant javac task command or javac -g if command line compiling. > -Original Message- > From: Alex Kravets [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 19, 2005 12:47 PM > To: Struts Users Mailing List

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Andy Dailey
To unsubscribe, e-mail: [EMAIL PROTECTED] > -Original Message- > From: Jones, Demian [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 2:13 PM > To: 'Struts Users Mailing List' > Subject: RE: Validation plug-in & Websphere Studio 5.0.1 > > PLEASE TAKE ME OFF THIS MAILING >

RE: missing reload method on ActionServlet

2004-08-10 Thread Andy Dailey
supported. http://struts.apache.org/faqs/newbie.html#reload --- Andy Dailey <[EMAIL PROTECTED]> wrote: > I am currently in process of upgrading to version 1.1, an application > that was build on version 1.0.2. Right now it seems that I am stuck. I > have extended the ActionServlet

missing reload method on ActionServlet

2004-08-10 Thread Andy Dailey
I am currently in process of upgrading to version 1.1, an application that was build on version 1.0.2. Right now it seems that I am stuck. I have extended the ActionServlet class and have invoked the reload() method. This worked with 1.0.2. But in 1.1, the method is totally missing. So my appl