RE: Any hosting sites that use Struts?

2001-05-30 Thread TJM Todd McGregor
Check out MMA Web at http://www.mmaweb.com/ http://www.mmaweb.com/ . They offer hosting accounts with a private VM so you can install Struts on your own. They also have support for Cocoon. -Original Message- From: Jeff Trent [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 9:12

nested properties and null values

2001-05-23 Thread TJM Todd McGregor
I have many cases in my application where I use a nested property in an html form field (i.e. - order.customer.id). If one of the nested properties is null Struts throws an exception. Is there any way around this? What I thought would happen in the above example is if the customer bean was null,

Template tags and multiple directories

2001-05-22 Thread TJM Todd McGregor
I'm running into some weird behavior using the template tags. I have a directory structure which separates different areas of my application into different directories. My template.jsp file is in my root directory and is shared by pages in the sub-directories. The problem is, all paths to other

Referencing nested properties with javascript

2001-05-18 Thread TJM Todd McGregor
Im sure there is a really simple solution to this, I just haven't found it yet. I have a property in my ActionForm which is of type Member (Member is a simple Java object which encapsulates data such as first name, last name, etc.). In my html page I have an html:text tag with the property value

RE: Referencing nested properties with javascript

2001-05-18 Thread TJM Todd McGregor
, so you can't use the focus attribute of this tag to give focus to a nested property. This is the code it generates, which is incorrect because it adds a . after the reference to the form: document.memberLogin.['credentials.loginPassword'].focus() -Original Message- From: TJM Todd McGregor

RE: Philosophical question(s) related to STRUTS

2001-05-10 Thread TJM Todd McGregor
This article touches on some of the concerns you've raised. http://www.sys-con.com/java/archives/0603/mcclanahan/index_i.html -Original Message- From: Mark Simms [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 9:44 AM To: [EMAIL PROTECTED] Subject: Philosophical question(s)

Session management with Struts

2001-05-09 Thread TJM Todd McGregor
I have a requirement that my application be able to allow multiple browser windows, sharing the same HttpSession, to access two separate instances of a business process simultaneously. For example, if I have a form that allows a user to change their address information my application must allow

RE: Session management with Struts

2001-05-09 Thread TJM Todd McGregor
]' Subject: RE: Session management with Struts Keep the ActionForms in 'request' scope. Then each page will have its own ActionForm. The problme occurs when you want to store these forms in session scope. cheers, Amar.. -Original Message- From: TJM Todd McGregor [mailto:[EMAIL PROTECTED