RE: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Nick Faiz
Thanks Brice, I just checked out Struts-EL. I think I'll begin using it with JSTL. Nick -Original Message- From: Brice Ruth [mailto:[EMAIL PROTECTED] Sent: Wednesday, 19 November 2003 12:36 PM To: Struts Users Mailing List Subject: Re: anyone using jstl side by side with the stru

Re: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Gus Heck
Brice Ruth wrote: Once you use EL, you don't have much of a choice than to use them side-by-side. For the benefit of us noobs... what is EL? -Gus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EM

what is the right way to test whether execute() is called after validate()?

2003-11-18 Thread Janice
I'm sorry if this is too basic, I'm still really green. I'm validating a form. This form is used for adding and editing widgets. I use the same actionHandler, where I test a request parameter and set up the form accordingly. It builds my form object and either resets it for an add, or retrieves

RE: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Nick Faiz
Gus, http://jakarta.apache.org/struts/userGuide/building_view.html#struts-el EL is an acronym for `Expression Language'. Nick -Original Message- From: Gus Heck [mailto:[EMAIL PROTECTED] Sent: Wednesday, 19 November 2003 12:37 PM To: Struts Users Mailing List Subject: Re: any

Virtual Hosting Problem with ActionForward

2003-11-18 Thread Juan Alvarado
We have the following problem with Virtual Hosting and server side forwards. We are using Apache with Tomcat (modjk). Our host (webapp) is configured at /Users/jalvarado/Developer/webapps/appname The app can be accessed http://www.somedomain.com We also have a virtual host http://somename.somedom

Re: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Brice Ruth
Expression Language ... its being able to use "${param.id}" in a JSP tag to get the value of the "id" request parameter passed to the JSP using it. Or being able to do something like test="${empty linkParams}" to test if a particular variable has no values/is null/etc. Gus Heck wrote: Brice Ru

Re: initializing properties for Actions

2003-11-18 Thread Kirk Wylie
By that I'm assuming you meant that: - You subclassed ActionMapping with setPasswordDisabled() and isPasswordDisabled() methods in "com.you.ActionMapping" - You set the "className" parameter on the "action" tag to "com.you.ActionMapping" - You downcasted the ActionMapping instance you got in your

RE: Accessing a static final constant from Class in JSP

2003-11-18 Thread Steve Armstrong
Well, you can use a JSP expression which strictly speaking isn't a scriptlet. So, after you do your import, you can use constants like Cheers, -Steve -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 10:48 AM To: [EMAIL PROTECTED] Subject

Re: JSTL & DynaValidatorForm

2003-11-18 Thread James Mitchell
On Tue, 18 Nov 2003, Yann Lebreton wrote: > Hi, > > > > For x and y reasons I've to create my own version of the tag. Why? > > Everything is working great for everything BUT DynaValidatorForm where I get Unable > to find a value for "value" in object of class > "org.apache.struts.validator.Dy

Re: initializing properties for Actions

2003-11-18 Thread Frank Maritato
Ok, I found something that works, although I'm not really happy with it. I took the suggestions of subclassing ActionMapping and specified it in my action-mappings declaration. This seems like poor design from the struts end since my HackMapping class now has to contain all initialization varia

How o use build.xml at the struts-blank example

2003-11-18 Thread tim duch
Hello, How can I use the build.xml to build my sources ( I mean how to run it ) . Pleae help. Regards -tim __ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree --

RE: How o use build.xml at the struts-blank example

2003-11-18 Thread Naveen S. Kumar
Install ant software and then set the class path and then run u r ant deploy or ant compile command -Original Message- From: tim duch [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 9:45 AM To: [EMAIL PROTECTED] Subject: How o use build.xml at the struts-blank example Hello

RE: How o use build.xml at the struts-blank example

2003-11-18 Thread tim duch
I am unserimpression that as tomcat4.1.12 is already installed there .. so ant is a by - default got installed. how to use it .. please let me know .. Regards -Tim --- "Naveen S. Kumar" <[EMAIL PROTECTED]> wrote: > Install ant software and then set the class path and > then run u r ant deploy

Re: initializing properties for Actions

2003-11-18 Thread Richard Yee
Frank, I did the same thing as you but could not get the set-property tag to work within the tags. It never called the setter. -Richard At 08:12 PM 11/18/2003, you wrote: Ok, I found something that works, although I'm not really happy with it. I took the suggestions of subclassing ActionMapp

Re: Which framework to choose?

2003-11-18 Thread J Janesko
Thank you, Ted. This is right on!! Thanks so much for the link! --Jenn --- Ted Husted <[EMAIL PROTECTED]> wrote: > Personally, I consider MVC frameworks to be > commodities. It doesn't > really matter which you use use. The real point of > the exercise is to > treat web applications like appl

<    1   2