Re: Digester Examples

2002-01-13 Thread Sandeep Takhar
the sample application has most of what is necessary. I do remember having problems with the digester when I was doing my own poc however and that was after understanding the example app and reading the docs. I think the example app is part of the source download for struts 1.0 Sandeep ---

Re: Digester Examples

2002-01-13 Thread Ted Husted
The Digester is now a Commons component. http://jakarta.apache.org/commons/digester.html Phase Communcations wrote: Does anyone know of some good concise digester examples and tutorials. I have been reading the docs but am unsure of several aspects of it. Brandon Goodin Phase Web and

RE: Question on Struts debugging - one more time

2002-01-13 Thread Sandeep Takhar
I am not sure what is implied by the below messages: Using netbeans I am able to debug servlets debug jsp's (a little buggy but it works) debug action classes and form classes. I am not sure if this all works remotely or not. logging is always a good idea. Sandeep --- Kilmer, Erich [EMAIL

Computer-programmer.org

2002-01-13 Thread Craig Tataryn
Hi there, for those of you who have been trying to get to the struts tutorial at http://www.computer-programmer.org/articles/struts/ , it has been down for a while. I was having network issues that have since been resolved. It's back up now! tataryn:craig/ -- To unsubscribe, e-mail:

forwarding back to the same action

2002-01-13 Thread William G. Bohrer
As part of my logic for a generalized controller Action I've written, I want to forward back through the same action I came from if no local or global forward has been configured, in other words I want to go to the action (not the input jsp) Can someone tell me why the following code inside my

Using the IMG tag dynamically

2002-01-13 Thread Jon Ferguson
Hey guys, I must be missing something. I've got an ActionForm with a bean attribute item... which has an image name under a property.. say item.imageName. I would like to use the image tag to use this image dynamically.. html:img page=/images/myImage.gif alt=No Image Set./ works fine... but

RE: Computer-programmer.org

2002-01-13 Thread Flashnet
Hi, It looks like a good tutorial but some of the slides do not load completely and others ar blurry. Thought you might want to know -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 13, 2002 12:31 PM To: [EMAIL PROTECTED] Subject:

case sensitive property names ??

2002-01-13 Thread Paradis, André
Hi, i had the following case where another process calls an action in my application with a parameter in url named A. like: .../actions/process?A=1UNAME=andre I coded a form bean with a getA/setA pair, but it never gets called. if I use a in the call to the action, it works. however,

Re: Computer-programmer.org

2002-01-13 Thread Craig Tataryn
Yeah, I know. It's weird. Almost like they are scambled. However, when I view them internally they look fine. I'll see if I can fix that, for now you can just download the .ppt file. Craig. Flashnet wrote: Hi, It looks like a good tutorial but some of the slides do not load completely and

FreeBSD

2002-01-13 Thread Robert
Is anyone running Struts in a low-medium traffic site on a FreeBSD server? I'm curious as to how the JVM's are holding up and what servlet engine is being used. Thanks! Robert Anyone who has never made a mistake has never tried anything new. -- Albert Einstein -- To unsubscribe, e-mail:

Re: case sensitive property names ??

2002-01-13 Thread Arron Bates
This has to do with the bean spec. And what you say is right. If you use all uppercase, it will leave the first letter alone, otherwise it will uppercase the first letter. And this would include your a example. Arron. Paradis, André wrote: Hi, i had the following case where another

Re: FreeBSD

2002-01-13 Thread Arron Bates
My site's running red-hat linux, apache, tomcat, struts, using IBM's 1.3 VM ...if that's any interest to you :) And from what I hear FreeBSD's a little more efficient at running things than linux. Arron. Robert wrote: Is anyone running Struts in a low-medium traffic site on a FreeBSD

[ANNOUNCE] Scioworks Camino v1.0

2002-01-13 Thread John Yu
We are pleased to announce the general availability of the Scioworks Camino v1.0, visual tool for Struts application development. Download is available at http://www.scioworks.com/scioworks_camino_download.html. --- Changes since v1.0-b2 (Build-011018): * User interface: * JSP

Re: MessagesPresent tag

2002-01-13 Thread David Winterfeldt
It's in the nightly builds. Are you using a nightly build (last few months) or Struts v1.0? David --- Pedone, Tim [EMAIL PROTECTED] wrote: I noticed a tag called messagesPresent in the logic tag docs http://jakarta.apache.org/struts/struts-logic.html#messagesPresent but got a Can't find

Re: Returns from erroneous validation without aditional information

2002-01-13 Thread David Winterfeldt
When I want to do something like this, I set validation=false in the struts-config.xml for the action. Then I can call validate on the ActionForm when appropriate. Or you can have two actions. One to prepopulate fields (with validation=false) and one with validation=true. David ---

NEVER MIND (RE: forwarding back to the same action)

2002-01-13 Thread William G. Bohrer
Never Mind! ;-) As soon as I sent this I realized it's not what I want to be doing - If there are no forwards found, I'll get into a dead loop. woops. Don't compute with the flu. =Bill -Original Message- From: William G. Bohrer [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 13,

Re: iterate only showing one row -- newbie question

2002-01-13 Thread Team Gasoline
Thanks for your reply, I have checked out your nested:iterate and it looks very interesting. And for my problem, if you look in my jsp I have closed the iterate tag twice, this was why I was only printing out the last row of the resultSet and not all of them. Cheers! logic:iterate

Bug in BeanUtils.populate()

2002-01-13 Thread Jason Chaffee
It appears there is a bug in BeanUtils.populate() for an indexed setter of array type. It doesn't take into account that it is an indexed setter and that the second parameter is an array because it only checks the first parameter which is always an int for an indexed setter. This is the

[I FIGURED IT OUT :-)] Digester Examples

2002-01-13 Thread Phase Communcations
Thanks for the info. I figured it out. I see the digester playing an incredible role in what I am doing. What an incredible tool! -Original Message- From: Phase Communcations [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 12, 2002 10:25 PM To: Struts Users Mailing List Subject:

RE: Execute Struts in Netbeans?

2002-01-13 Thread Michael Mok
I have written a HOW-TO on this. You may want to read it first. www.michaelmok.com Michael Mok Product Manager FullyBooked 1306 Hay Street West Perth Western Australia 6005 Tel: 61 8 93221295 Fax: 61 8 94815281 Email: [EMAIL PROTECTED] www.fullybooked.com.au -Original Message- From:

Re: Bug in BeanUtils.populate()

2002-01-13 Thread Arron Bates
BeanUtils works correctly in that if you want to set against an index, you can have the following forms. Quoted from the bean spec --== void setter(int index, PropertyType value); // indexed setter PropertyType getter(int index); // indexed getter void setter(PropertyType

RE: Bug in BeanUtils.populate()

2002-01-13 Thread Jason Chaffee
The spec. supports the following: setFoo(int index, Object[] array) However, BeanUtils.populate() does not. The problem is that BeanUtils.populate() isn't checking if the second parameter is an array or not, it only checks the first parameter. However, the JavaBean spec. allows for