RE: ejb's and tomcat

2003-10-07 Thread Brian Richards
www.jboss.org -brian -Original Message- From: ajay brar [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 07, 2003 9:51 PM To: [EMAIL PROTECTED] Subject: ejb's and tomcat Hi! does tomcat support ejb's. I'm building a web app which uses struts. i'm using ejb's for the model part. can

Books

2003-10-07 Thread Brian Richards
. So I'm trying to think of *something* to implement with struts. So yeah, book recommendations? -Brian Richards - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: JavaScript Form/submit Function

2002-03-11 Thread Brian Richards
Sounds like you have an element in your form named submit. Check your html and make sure none of your elements are named submit. bsr -Original Message- From: Bettina Gaus [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 9:57 AM To: '[EMAIL PROTECTED]' Subject: JavaScript

RE: How to fill a String[] property?

2002-03-05 Thread Brian Richards
Try void setActivities(int index, String parm) { mActivities[index] = parm; } -Original Message- From: Alex Colic [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 2:02 PM To: Struts Subject: How to fill a String[] property? Hi, I have a form with a string array property

RE: How to fill a String[] property-updated question.?

2002-03-05 Thread Brian Richards
The problem you're running into is that your form bean doesn't match the Bean pattern for indexed properties. In the populate method of the BeanUtil class a check for IndexedPropertyDescriptor is done on the form bean. The javadocs for IndexedPropertyDescriptor state: ... if the argument name

RE: submitting with link

2002-02-20 Thread Brian Richards
You need to make the submit a method call. document.forms[0].submit(); bsr -Original Message- From: Syed Niaz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 8:51 AM To: Struts Users Mailing List Subject: submitting with link Hi Iam unable to submit a form using a

RE: problem with FormBean

2002-02-13 Thread Brian Richards
Make sure you have the input parameter set in the appropriate action tag of the struts-config.xml. The parameter should be set to the page you posted from. bsr -Original Message- From: Dua, Amit [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 9:35 AM To: 'Struts Users

RE: Initializer servlet?

2002-02-08 Thread Brian Richards
The 2.3 Servlet API has Lifecyle Events. You just have to use the listener tag in your web.xml to specify a class that implements the ServletContextListener interface. There is an explanation at http://developer.java.sun.com/developer/technicalArticles/Servlets/servl etapi2.3/ under the