whart is the best web application server for developers?

2002-12-08 Thread Reza Aliakbari
Dear friends, I use jrun4.0 as web application; but this server now has made some problem for me. Can you offer me a nice web application server during development? Can you e-mail me the URL for comparing between web application servers? Thanks.

Re: whart is the best web application server for developers?

2002-12-08 Thread colin campbell
Reza, I would be very surprised if most members of this forum did not recommend Tomcat if you are doing JSP / servlet/ struts style development. There are also corresponding forums fot Tomcat, so they can aid you. There are other packages which might be of interest, but from a development

RE: whart is the best web application server for developers?

2002-12-08 Thread James Mitchell
Tomcat http://jakarta.apache.org/tomcat JBoss/Tomcat http://sourceforge.net/projects/jboss I can't help you with the comparison, but I usually use JBoss with embedded Tomcat (even if I am only taking advantage of the servlet container). I really like the automatic hot deploy/redeploy

Pass parameter to the same JSP Display parameter value into i/p bean field.

2002-12-08 Thread Harshal D
My app (simplified) ProductSearch.jsp – display a search box (searchForm) for product name -- Action - Get name string create product bean -- (AGAIN) ProductSearch.jsp display list of products bellow the search box. -- In the list display QTY from product bean – but allow user to change

some basic questions

2002-12-08 Thread Anuj Agrawal
I'm kinda new to Struts, so please forgive these simplistic questions. (I've gone over the documentation and have been playing with the struts-example app.) 1. Is the reason bean:message key= / tags are used all over the place (for things like page titles etc) primarily for locale support? If

RE: some basic questions

2002-12-08 Thread Edgar P. Dollin
bean:message key= / is for locale support or global replace as you wish to interpret it. Look at tiles, the struts specific include mechanism as it is quite powerful. Edgar -Original Message- From: Anuj Agrawal [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 2:20 PM To:

Re: whart is the best web application server for developers?

2002-12-08 Thread Dan Trevino
Orion ( http://www.orionserver.com/ ) is free for development and easy to use. It also has good support ( http://www.orionsupport.com/ , http://kb.atlassian.com/ ). Flashline has an app server comparison matrix here: http://www.flashline.com/components/appservermatrix.jsp dan On Sun,

Struts

2002-12-08 Thread Paul Vincent Craven
Hi, I have a DynaValidatorForm I want to pre-populate with info from a database. I have no problem doing this with a non-dynamic form. My code looks like this: DynaValidatorForm newForm = new DynaValidatorForm(); newForm.set(personNameInfo,firstname,person.getFirstName()); I have also tried:

Re: Pass parameter to the same JSP Display parameter value intoi/p bean field.

2002-12-08 Thread V. Cekvenich
Here is where you can find sample apps, cleverly hidden on the home page of Struts: http://jakarta.apache.org/struts/resources/index.html But don't be shy about taking a intro public Struts training class, there are like 10 companies that train ( It used to be a few last year). Or consider a

Struts Kick Start now available from SAMS

2002-12-08 Thread James Turner
Just a heads-up that Struts Kick Start (complete with CD-ROM packed with open-source goodies) is now in the warehouse and available from SAMS directly (www.sams.com), Amazon and the rest of the online vendors should have it within a week or so. James _

html:file validation

2002-12-08 Thread Richmond Te
I am wanting to validate if the user did not enter a filename, an error message to be displayed when submit is clicked. (ie. when no file name is entered) I have the following on the jsp: html:text property=description styleClass=body size=23 maxlength=18/bean:message

RE: Question about adding ActionErrors

2002-12-08 Thread Mohan Radhakrishnan
Hi, We are validating against the database in the LoginAction through a business delegate. I think the validation in the form would be limited to checking for null or spaces... A related question. In my action, I use saveErrors. How are the 'errors' saved inside the form ? Thanks,