Re: Ted, et al, Struts Book

2002-11-07 Thread micael
No answer yet. At 03:23 PM 11/7/2002 -0500, you wrote: On Thursday, November 7, 2002, 1:19:33 PM, micael wrote: m I have been into the online version a bit, and am loving it. How m do we get credit when ordering the hard copy? The site mentions m the credit but seems to have no mechanism

need help with indexed properties

2002-11-07 Thread Kevin HaleBoyes
I have a Forms Bean public class IndexedForm { private String items[] = new String[] {one, two}; public String[] getItems() { return items; } public void setItems( String[] v ) { items = v; } } and a JSP page to display/edit the items: logic:iterate id=i name=IndexedForm

Re: [ANNOUNCE] Struts In Action now in print

2002-11-07 Thread Daniel Jaffa
Now that jguru wants money to search their archives are people still using it as much - Original Message - From: Ted Husted [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, November 07, 2002 3:45 PM Subject: Re: [ANNOUNCE] Struts In Action now in print

Re: Ted, et al, Struts Book

2002-11-07 Thread Kris Schneider
Read your order confirmation email carefully and make sure you hang on to your order number: Thank you for purchasing Manning's Struts in Action, ebook Edition. Your order number is: foo You have a 24-hour windown from time of purchase in which to download your ebook. The URL for

RE: form component reuse best practices?

2002-11-07 Thread Donald Dwoske
We do a similar thing as Jason explained. We're a couple of steps lighter and not as elegant, but same in philosophy, and effective for us. In our model, we have a ControlledVocabulary factory which can return a list of ControlledVocabularyItem beans (id,name,description) List states =

RE: back button

2002-11-07 Thread Trieu, Danny
Prior from forward to the JSP that will submit to your action, you need save the Token first and then in the JSP, the form tag, I you need to turn on the transaction Token. This will guaranty that you token is fresh, and the from tag will create A hidden field that has your token value and submit

RE: need help with indexed properties

2002-11-07 Thread Karr, David
-Original Message- From: Kevin HaleBoyes [mailto:kzboyes;yahoo.com] Sent: Thursday, November 07, 2002 12:49 PM I have a Forms Bean public class IndexedForm { private String items[] = new String[] {one, two}; public String[] getItems() { return items; } public

Re: New ApacheCon session: What's New in Struts 1.1

2002-11-07 Thread Craig R. McClanahan
On Thu, 7 Nov 2002, Robert Taylor wrote: Date: Thu, 7 Nov 2002 14:23:40 -0500 From: Robert Taylor [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: New ApacheCon session: What's New in Struts 1.1 For anyone going to ApacheCon, this may

html:errors

2002-11-07 Thread Chen, Gin
Hi, I am using: html:errors property=add.errors/ It worked when I did manual validation and added the errors to with add.errors property But now I'm trying to use the struts validator and created a validator.xml. How do I tell the Struts-validator

Re: Ted, et al, Struts Book

2002-11-07 Thread micael
Thnx Q. At 04:17 PM 11/7/2002 -0500, you wrote: Read your order confirmation email carefully and make sure you hang on to your order number: Thank you for purchasing Manning's Struts in Action, ebook Edition. Your order number is: foo You have a 24-hour windown from time of purchase in

RE: Best Practice: Organizing Bean Key Error Key Constants?

2002-11-07 Thread Frost, Gary [IT]
I do a very similar thing, only I use an Interface, for a start it saves typing the public static final (implicit in an interface constant). As my application is pretty big, and getting larger, I have some key centralized constants in one GlobalConstants interface at the top level of my

struts-config

2002-11-07 Thread Edgar Dollin
Has anyone ever worked with forwarding to a servlet as opposed to a jsp page? The controller handles that well as the only association the jsp page is to the ActionForm and the actions are independent of the jsp. From my reading and tests It looks like you can't forward to another Action

RE: Best Practice: Organizing Bean Key Error Key Constants?

2002-11-07 Thread Mark_StGodard
Putting constants in Interfaces ? I would agree with Josh Bloch's standpoint on this, as discussed in his Effective Java book and as well as in this JW article: http://www.javaworld.com/javaworld/javaqa/2001-06/01-qa-0608-constants.html Article excerpt: It turns out that using an interface to

RE: How to validate manually?

2002-11-07 Thread Wendy Smoak
Kris wrote: Check out Action.saveErrors for saving the errors returned from your call to validate: saveErrors(request, null); // clear current errors if you want ActionErrors er = form.validate(mapping, request); if ((er != null) (!er.isEmpty())) { saveErrors(request, er); forward = new

[OT] RE: Entire Struts Mail Archive

2002-11-07 Thread Hue Holleran
Sorry to perpetuate something that could be construed to be OT... but I'd like to chip-in with my 2p worth if that's OK. As relatively very new users to Struts we have found getting up-to-speed with Struts more difficult than we originally envisaged - probably due to being used to being spoon-fed

RE: Ted, et al, Struts Book

2002-11-07 Thread Tim Buchalka
I just bought the e-book. You get a specific code when you place the order, and you quote that code when you buy the hard copy to get the discount. Cheers Tim -Original Message- From: micael [mailto:caraunltd;harbornet.com] Sent: Friday, 8 November 2002 7:19 To: Struts Users Mailing

Re: [OT] RE: Entire Struts Mail Archive

2002-11-07 Thread V. Cekvenich
news.basebeans.com has a archive you can access via a newsreader such as outlook. basicPortal.sf.net is a set of public source code of example of writing a real DB application with master detail processing, CURD, etc. Both of above are listed in sturts resources pages. hth, .V Hue Holleran

Re: can struts work with sessions disabled?

2002-11-07 Thread Brad Harding
Thanks Craig for your response. The problems I'm having do indeed seem to be related to the locale, but it seems like a lot of struts tags might rely on the locale being in the session. For example, the bean:message tag seems to rely on a locale being in the session to work. I can probably

[Announce] Struts Article targeted toward very new users and management

2002-11-07 Thread Kevin . Bedell
I've just had an article on Struts posted at developer.com. I specifically targetted the article to very new users and those needing articles or information to give to managers. My hope is that new users can get a basic understanding of Struts by reading it. In addition, I specifically tried

CGI Variables From Struts Tag

2002-11-07 Thread Vinh Tran
I feel like I am overlooking the obvious but I can't figure this out. Is there a Struts tag that will allow me to retrieve CGI variables such as SERVER_NAME or SERVER_PORT? Vinh

RE: [Tiles]TilesAction and contents changing dynamically

2002-11-07 Thread yoko hama
First of all,thanks for your response,Trieu. Could you tell me how can i realize it or can you show me some example? I tried to create an action extends TilesAction,and set it as a control action for one tiles definition.When i use it from the tiles definition,it works fairly well,but when i

[ANNOUNCE] Struts Console v3.1

2002-11-07 Thread James Holmes
Struts Console version 3.1 is now available. http://www.jamesholmes.com/struts/ Download Now: http://www.jamesholmes.com/struts/struts-console-3.1.zip -- OR -- http://www.jamesholmes.com/struts/struts-console-3.1.tar.gz Struts Console is FREE software. This release fixes some bugs with the

data in session sometimes not get updated???

2002-11-07 Thread Tuan H. Le
Hi, I'm having a bug in my application that the user's session attribute SOMETIMES does not get updated/refreshed as expected, but I don't know the reason why. Please advise what I'm doing wrong. Here is my test scenario 1) UserAction class fetches a list of employees with review status and

Re: Using SecureLinkTag with non-actions

2002-11-07 Thread Rick Mann
on 11/5/02 7:00 PM, Ditlinger, Steve at [EMAIL PROTECTED] wrote: As for specifying a forward to be secure or non-secure: changing the protocol requires a redirect, so every forward where the protocol changes would require a redirect, which would be OK assuming the developer recognizes that

Re: CGI Variables From Struts Tag

2002-11-07 Thread Craig R. McClanahan
On Thu, 7 Nov 2002, Vinh Tran wrote: Date: Thu, 7 Nov 2002 20:20:03 -0500 From: Vinh Tran [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: CGI Variables From Struts Tag I feel like I am overlooking the obvious

[ANNOUNCE] Management-oriented Powerpoint Presentation for Struts

2002-11-07 Thread Kevin . Bedell
James Turner and I have collaborated on a Management Powerpoint presentation that can be used to make the case for using Struts for development. If others have comments/additions/etc of course we are flexible. The presentation will be available on our site later this evening or tomorrow,

RE: [ANNOUNCE] Management-oriented Powerpoint Presentation for Struts

2002-11-07 Thread Andrew Hill
snip src=http://www.strutskickstart.com; We're also putting the last touches on the companion CD-ROM which will be included with the book. We think that this will be a real added value for readers, as it will contain literally everything you'd need to start developing Struts applications on a

RE: checkbox always checked(help needed)

2002-11-07 Thread Sandeep Karnwal, Noida
Thanks David This solves my problem. Regards Sandeep -Original Message- From: [EMAIL PROTECTED] [mailto:dmkarr;earthlink.net] Sent: Thursday, November 07, 2002 8:25 PM To: [EMAIL PROTECTED] Subject: Re: checkbox always checked(help needed) Sandeep == Sandeep Karnwal Sandeep writes:

/ /OREF:CPTF50F8 RE: Websphere Application Server 4.01 to 4.04 for AIX

2002-11-07 Thread avasey
Windows 2000 (I have got rid of all my Struts and ClassNotFound exceptions.) Yeo, Rodney W

commons-beanutils

2002-11-07 Thread Mohan Radhakrishnan
Hi, I put the commons-beanutils package in /common/lib and I get the following error. Nov 8, 2002 12:15:27 PM org.apache.commons.digester.Digester endElement SEVERE: End event threw error java.lang.NoSuchMethodError: org.apache.commons.beanutils.MethodUtils.invokeMeth

RE: commons-beanutils

2002-11-07 Thread Andrew Hill
Hi Mohan, the javadocs (and source code) for beanUtils and collections is linked to from here if you havent found it already: http://jakarta.apache.org/commons/beanutils.html http://jakarta.apache.org/commons/collections.html Alas Im not sure what versions of these libraries are used by struts.

RE: can struts work with sessions disabled?

2002-11-07 Thread du Plessis, Corneil C
You will have to allow struts to create the session and store locale information. Use a Cookie to manage or identify state information that your application relies on. -Original Message- From: Brad Harding [mailto:bradharding;earthlink.net] Sent: 08 November, 2002 02:46 To: Struts Users

<    1   2