RE: Populating a Form with values

2002-01-11 Thread Jesse Alexander (KABS 11)
I also prefer 1 action... but I use the parameter-tag in struts-config for the action-mapping. Meaning 2 ActionMappings - 1 Action - 1 ActionForm and so on regards Alexander -Original Message- From: Keith Bacon [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 10. Januar 2002 19:04 To:

RE: Partial Loading of JSP Page

2002-01-11 Thread Jesse Alexander (KABS 11)
short time ago, there had been a message about a wait-page implementation. search it in the archives and request the package from the author...might be what you want... hope this helps Alexander -Original Message- From: Hakan Forss [mailto:[EMAIL PROTECTED]] Sent: Freitag, 11. Januar

RE: Trouble with web.xml in weblogic 5.1 SP8

2002-01-11 Thread Jesse Alexander (KABS 11)
Hi, have a look at the dtd for web.xml... Lately I learned in a similar way that it is not allowed (according to the dtd) to have something like: servlet servlet-mapping servlet servlet-mapping somehow this would be logic: define the servlet and its mappings, then define the next servlet...

RE: What is the best way to display pictures from a database usin g Struts

2002-01-09 Thread Jesse Alexander (KABS 11)
Hi, from an Action's perform() you can do two things: a) do something (usefull) and return an ActionForward-object b) do somthing (usefull), write the desired output (html, pdf-stream, image-bytes,...) to the response-objects output (just like standard servlet-programming!) and return a

RE: Best way to store configuration data

2002-01-09 Thread Jesse Alexander (KABS 11)
Hi, how does this sound to you: - write a dedicated servlet that reads in the configuration-info either from - a dedicated configuration-file (your private format... xml or properties) - init-param's specified for this servlet - context-param's - load this servlet at startup - use the

RE: response has already been committed

2002-01-09 Thread Jesse Alexander (KABS 11)
Hi, forward() is supposed to be used only when nothing so far has been written to the buffers. That is why the ServletContext has a include()- method... I think there is a reset() somewhere supposed to allow a forward() after having written something, but it will fail also if some buffer has

RE: JavaScript -- use or not use???

2002-01-07 Thread Jesse Alexander (KABS 11)
Hi, make the following your motto: Everything you validate in JavaScript must be validated again on the server-side. and Code your app the way it would run also with Javascript off, even though it might result in less comfort for the user, or longer response times (because it must go back to

RE: Struts JBuilder 5

2002-01-04 Thread Jesse Alexander (KABS 11)
Hi Sushant, in the mailing-list searchable archive you can look for an email in which I describe how we use Struts and JBuilder (basically a special way to start the tomcat-environment) and for which the plug-ins are not necessary.

RE: Looking for a clean required-bean handler

2002-01-03 Thread Jesse Alexander (KABS 11)
Hi, definitely works. It is the way I recommend to our programmers. Makes it easy to prepopulate all the forms on jsp's. good luck Alexander -Original Message- From: Michael Sabitov [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 12:49 AM To: 'Struts Users Mailing List'

RE: Error Tag Usage - Found the answer myself - I think

2001-12-29 Thread Jesse Alexander (KABS 11)
Hi, using Struts 1.0, I added David Winterfeldts Validation framework and got better error-message-tags as a side-dish (for free). Try it. With David's Tags you can specify the errors you want to show better.. hope this helps Alexander Jesse -Original Message- From: Michael Sabitov

RE: Creating reports in PDF format

2001-12-27 Thread Jesse Alexander (KABS 11)
Well if you use FOP, it should be no big deal to create a xsl-file that can transform the xml you need to create anyway (for fo) into something excel can digest (comma-separated, tab-separated,...) In case you devise something working please let us know how... regards Alexander -Original

RE: Netscape 4.7x slow with Tomcat/Struts combination!

2001-12-21 Thread Jesse Alexander (KABS 11)
Hi, not quite... (comment aboutvm-tuning)... when we were finding the problem of double allocating we were talking about 1000's of concurrent users. The vm was tuned to use up to a GIG of memory and it still was able to crash. OK. the app also put quite some stuff into the session, but at the

RE: URL Rewriting

2001-12-19 Thread Jesse Alexander (KABS 11)
Hi, have you checked in the mailing-list-archives at: http://www.mail-archive.com/struts-user@jakarta.apache.org/ Searching for HashMap resulted in a list containing a reference to this message: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg19443.html Which seems to do what

RE: URL Rewriting

2001-12-19 Thread Jesse Alexander (KABS 11)
PROTECTED] Visionnaire Informática SA http://www.visionnaire.com.br Tel/Fax: +55 41 373-7400 r: 217 - Original Message - From: Jesse Alexander (KABS 11) [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, December 19, 2001 8:41 AM Subject: RE: URL Rewriting Hi

RE: Checkbox's question.

2001-12-17 Thread Jesse Alexander (KABS 11)
Hi, use the form's reset()-methode. why: - check out the links in the Struts resource area - search the mailing list archive regards Alexander Jesse -Original Message- From: Hong Xing [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 4:06 PM To: [EMAIL PROTECTED] Subject:

RE: html:errors handling

2001-12-17 Thread Jesse Alexander (KABS 11)
Hi, have you defined the errors.header and .footer texts in the application resource file? hope this helps Alexander Jesse -Original Message- From: Frédéric Houbie - ABSIS-GROUP [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 5:22 PM To: Struts-User Subject: html:errors