Re: Struts 2 and Validation Testing

2007-05-17 Thread Ben Morgan
k hall wrote: > > I really like Struts 2 but has anyone had any success in testing Struts > 2's action validation logic? > I also really like Struts2 and have been suffering the same irritation with testing validation logic. Having spent a while stepping through the code, it appears that the

[Struts Workflow] using attributes on a jsp?

2007-04-26 Thread Cassie . Morgan
-Cassie Morgan My struts-config mapping for the two related actions: An init

RE: The best place for output formats

2005-04-28 Thread Justin Morgan
IMO, when you take away JSTL *and* custom tags *and* Java code escapes from JSP, there's not much left to JSP. -Original Message- From: Rodolfo GarcĂ­a Esteban/CYII [mailto:[EMAIL PROTECTED] Sent: Thursday, April 28, 2005 9:28 AM To: user@struts.apache.org Subject: Re: The best place f

RE: Session Idle

2005-04-06 Thread Justin Morgan
I think Eain is saying that he has some operations that take a long time, and he wants to suspend the timeout counter during those operations. So suppose the timeout in web.xml is 5 minutes. One particular operation takes 10 minutes to complete. Do not expire session. However, if the user is id

RE: URGENT HELP

2005-04-04 Thread Justin Morgan
nt s. I also have Jeff's question: why do you have a label for a hidden form element? -Justin -Original Message- From: Jeff Beal [mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 2:03 PM To: Struts Users Mailing List Subject: Re: URGENT HELP On Apr 4, 2005 11:49 AM, Justin M

RE: URGENT HELP

2005-04-04 Thread Justin Morgan
The label is supposed to be closed before the input tag. IE is nicer about mistakes like this than Netscape is. Try the code below. Reference: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.9.1 -Justin -Original Message- From: Sunu Mathew [mailto:[EMAIL PROTECTED] S

RE: CSS class name in bean:message ???

2005-04-01 Thread Justin Morgan
is a block element. is an inline element. (Yes, those are technical terms) -Justin -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 1:09 PM To: Struts Users Mailing List Subject: Re: CSS class name in bean:message ??? [EMAIL PROTECTED] w

RE: Best practice for "dynamic reloading" of a part of the JSP ?

2005-03-25 Thread Justin Morgan
On a slightly tangential note, here's one opinion on XMLHttpRequest usability: http://www.baekdal.com/articles/Usability/XMLHttpRequest-guidelines/ I tend to agree with most, but not all of it. -Justin -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Friday,

PDF of User's Guide

2005-03-25 Thread Justin Morgan
I apologize in advance if this is a trivial question... I poked around the Struts website, but I was unable to find a PDF version of the User's Guide (http://struts.apache.org/userGuide/index.html). Is there a PDF version of this resource out there? Thanks, -Justin -

RE: How to search this list?

2005-03-18 Thread Justin Morgan
Another option: http://desktop.google.com/ (if you're using Outlook or other mail client with a search plugin available) -Justin -Original Message- From: jelything [mailto:[EMAIL PROTECTED] Sent: Friday, March 18, 2005 1:36 PM To: struts-user@jakarta.apache.org Subject: How to search t

RE: MVC Frameworks

2005-03-08 Thread Justin Morgan
thinkers I have ever read IMHO) has a good discussion of the options in J2EE Development without EJB in Chapter 13: Web Tier Design. Jack On Mon, 7 Mar 2005 14:19:47 -0600, Justin Morgan <[EMAIL PROTECTED]> wrote: > Hi there, > > I am currently researching different web applicat

MVC Frameworks

2005-03-07 Thread Justin Morgan
Hi there, I am currently researching different web application frameworks... JSF, Struts, and Tapestry specifically. We are planning to migrate a large existing web application to a rigorous model 2 standard using one or more of these frameworks, and I am looking for more information on the diffe

Re: Using commons HttpUtils to call an Action, but it doesn't work.

2004-11-19 Thread Morgan
Guillaume Cottenceau bluewin.ch> writes: > > Morgan writes: > ... > This is not a thread-safe HttpClient. Any chance the code is > called by several threads at the same time or something? > It's possible that many people are hitting this Action at the same t

Using commons HttpUtils to call an Action, but it doesn't work.

2004-11-17 Thread Morgan
I'm using the following code in an initialization routine to call an Action. This occurs the first time a user hits the application. This was all working on WebSphere 4.0.4, but we upgraded to WS 5.1.0.5 and now it doesn't work. No error, no logs, no exception. Just like it doesn't get called. O