RE: Installation Getting Started Question

2004-11-17 Thread Amin Lalji
Hey Scott, In practice, the Struts Distribution works like any other Servlet bases Web-App... Download struts and deploy the examples to tomcat (you do not necessarily require Apache, since struts is Servlet based technology)... in other words you really only need a Servlet Container... Good Luc

RE: free struts boook

2004-11-17 Thread Amin Lalji
http://www.theserverside.com/books/sourcebeat/JakartaStrutsLive/index.tss Google is your friend :) /A -Original Message- From: Nishant [mailto:[EMAIL PROTECTED] Sent: November 17, 2004 9:51 AM To: Struts Users Mailing List Subject: free struts boook where do i get struts free book exc

RE: Hate Myself for Not Getting Drop-Down Menu Right

2004-09-20 Thread Amin Lalji
Try removing the bean:define And setting your line: to: HTH, Amin -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 12:26 PM To: [EMAIL PROTECTED] Subject: Hate Myself for Not Getting Drop-Down Menu Right There is no problem with the

Updating select list...

2004-09-09 Thread Amin Lalji
Hey All, I have a slightly complex problem: I have a dynaform which creates a set of input boxes (address information etc.) to be filled in based upon a number the user specifies at runtime: E.G Choose how many addresses you would like to add? (assume user chooses 3) Three sets of input box

RE: Theoretical debate

2004-06-17 Thread Amin Lalji
I recently downloaded IBATIS in order to use it for some object persistence... interestingly, their JPetStore implementation used a similar idea, although it was all struts based: Essentially, each "method" you want to call is actually mapped within the Action Mapping... so if you wanted to "sea

Pluggable User Security Framework

2004-06-10 Thread Amin Lalji
Hello All, Just wondering if anybody has come across an Open Source Pluggable User Authentication Frameworks that integrates well with struts... nothing fancy... just user login/password, tombstone information, group levels etc... Thanks

Indexed Properties DynaValidatorForm

2004-04-19 Thread Amin Lalji
I am trying to use a DynaValidatorForm with Indexed Properties... I have setup validation using the Validator Framework... Validation is working, however when it comes time to display failed validation (from ActionErrors), I can not seem to output an individual error message for each indexed prope

RE: DynaAction or Map Backed Form?

2004-04-08 Thread Amin Lalji
essors getDocuments ( ) and getId ( ) Assume document is a bean wit accessors getId ( ) and getName ( ) -Original Message- From: Amin Lalji [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 1:26 PM To: 'Struts Users Mailing List' Subject: RE: Dy

RE: DynaAction or Map Backed Form?

2004-04-07 Thread Amin Lalji
explain the data structure better, it would be easier to help. -Original Message- From: Amin Lalji [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 12:39 PM To: 'Struts Users Mailing List' Subject: RE: DynaAction or Map Backed Form? Sorry... to add... Each Service may ha

RE: DynaAction or Map Backed Form?

2004-04-07 Thread Amin Lalji
Sorry... to add... Each Service may have a unknown set of documents... E.g. Services: 001 Catering 002 Party Documents: 001 Contract 002 Deposit Should yield: Contract Deposit Contract Deposit Thanks, /A -Original Message- From: Amin Lalji

DynaAction or Map Backed Form?

2004-04-07 Thread Amin Lalji
Hello All, I have the following scenario: I need to populate a form using a runtime generated set of form properties... Essentially I have two collections I pull from a database Services (serviceID,serviceName) Documents (documentID,documentName) I want to populate a set of che