Re: form submit() method is not recognized.

2002-08-18 Thread avasey
Thanks for the information as I have also being fighting with problem. |+---> || oagady@yahoo.| || com | || | || 18/08/2002 | || 07:47 AM | ||

RE: when to use Struts

2002-08-18 Thread John Yu
This article may help: http://www.scioworks.net/devnews/articles/struts_adoption_issues/index.html At 06:03 am 19-08-2002, you wrote: >Why reinvent the wheel? If it has been done for you, why not use it and let >someone else have all the problems of maintaining it? > >I've reecently started

Re: How to break up a Page (64K problem)

2002-08-18 Thread John Yu
The general strategies to workaround the 64k barrier are: (Hmm, reminds me himem.sys in the good old DOS days :-) 1. Split the page up into multiple JSP pages and use to create the aggregate page. This is by far the most effective and common technique. This works because is evaluated at

RE: struts newbie

2002-08-18 Thread Lito Ang
The links you gave me will be of great help for newbies like me! Thanks Tim! ;) -Original Message- From: Tim T. Young [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 17, 2002 12:27 AM To: Struts Users Mailing List Subject: Re: struts newbie Hello and welcome! HTML Tags --> http:

RE: Multiple file upload?

2002-08-18 Thread Martin Cooper
> -Original Message- > From: Andrew Hill [mailto:[EMAIL PROTECTED]] > Sent: Saturday, August 17, 2002 5:56 AM > To: Struts Users Mailing List; [EMAIL PROTECTED] > Subject: RE: Multiple file upload? > > > btw: > What gets submitted for an empty file field? > Nothing, or null or... ? Un

RE: Multiple file upload?

2002-08-18 Thread Martin Cooper
> -Original Message- > From: Andrew Hill [mailto:[EMAIL PROTECTED]] > Sent: Saturday, August 17, 2002 5:51 AM > To: Struts Users Mailing List > Subject: Multiple file upload? > > > Haven't tried this yet so figured I better get advice on the > best approach > before spending time on i

RE: Struts Community is going crazy! :-))

2002-08-18 Thread Phase Web and Multimedia
Ted, I totally dig your catalog and i have been examining Artimus. Stellar piece of work btw. I would love to receive more clarity towards which classes are best extended for what functions. For example, there are things that i can do in an Action class that can also be done in a RequestProcessor

Re: Struts Community is going crazy! :-))

2002-08-18 Thread Tiago Nodari
hey everyone, i just joined the mailing list a few days ago, and wow some many good discussions. Patterns would help a lot, specially for ppl like me who are really new to Struts and still need to learn the best way to use struts. Since I cant help in creating patterns, I c

Re: Struts Community is going crazy! :-))

2002-08-18 Thread Ted Husted
If anyone wants to start writing up patterns and submitting them to the project (preferably in XML), I'd be happy to shepard them into the documentation. But someone has to be willling to do the work. This is an open source project, and everyone who uses Struts is part of the team. We don't ta

Re: when to use Struts

2002-08-18 Thread Joel Rees
> However, my > main concern is that learning to use this 'wheel' might take longer than > building one myself. Great. Allocate a few extra days for the learning curve and try building one yourself. That way, you'll know whether you really need a full-blown framework like struts, and, if you do n

RE: when to use Struts

2002-08-18 Thread Peggy Davidson
We had a 30-day prototype to get up and running and chose Struts for the framework. There were 3 team members, none of whom had ever used Struts before. We chose it because of how much we had heard about ease of use, etc from other peers. We made our deadline and the interface included about 20

RE: when to use Struts

2002-08-18 Thread Craig R. McClanahan
On Sun, 18 Aug 2002, neal wrote: > Date: Sun, 18 Aug 2002 15:07:45 -0700 > From: neal <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: RE: when to use Struts > > Yeah, I know what I am saying would be li

Re: Populating dynamic form beans

2002-08-18 Thread Paul Finlay
Drew McAuliffe wrote: > > Is there a simple way to populate a dynamic form bean with an object > whose properties match the names of the configured fields in the form? I have not seen any reply to this question and I have the same related issue. Scenario is as follows: The same DynaValidatorFo

Re: when to use Struts

2002-08-18 Thread Kenneth Stout
Neal, I believe there are four areas that make struts worth the investment. 1) struts allows you or a team to deal with each of the building blocks one at a time. You start with the core and then add-on templates, tiles, validator, etc as and when needed. 2) Rock solid code base. 3) It has an out

RE: when to use Struts

2002-08-18 Thread Ian Vellosa
there is a good tutorial at; http://rzserv2.fhnon.de/~lg002556/struts/Doku.html if you can put aside a day or maybe two, you can get the basics all susseed off this -Original Message- From: neal [mailto:[EMAIL PROTECTED]] Sent: 19 August 2002 00:08 To: Struts Users Mailing List Subject:

RE: when to use Struts

2002-08-18 Thread neal
Yeah, I know what I am saying would be like reinventing the wheel, and thus the point of using a framework (to not reinvent the wheel). However, my main concern is that learning to use this 'wheel' might take longer than building one myself. I'm sure the guys who wrote Struts are masters of the

Re: when to use Struts

2002-08-18 Thread V. Cekvenich
You can spend your time writing system programing (bugs?, performance?, document? new hires? future?) and write yet another mvc, (do you think you can out do the Struts team of Craig, Ted, Martin, Cedric, Winterfeld, etc. etc, what they did for the last few years?) or spend your time re-using w

RE: when to use Struts

2002-08-18 Thread Ian Vellosa
Why reinvent the wheel? If it has been done for you, why not use it and let someone else have all the problems of maintaining it? I've reecently started to use struts. I was a bit sceptical about it to begin with, but it has proved tot be really useful. Definatley recomend usinig it. -Origi

RE: when to use Struts

2002-08-18 Thread neal
True. But MVC programming can be achieved without Struts. Writing an action servlet similar to that provided by Struts does not appear to be difficult. N -Original Message- From: V. Cekvenich [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 18, 2002 2:48 PM To: Struts Users Mailing Li

Re: when to use Struts

2002-08-18 Thread V. Cekvenich
The bigger the project the more productivity you get with modular (MVC) programming. v. neal wrote: > I am new to struts and am attempting to get my around how valuable it would > be me. > >>From what I gather, it's primary asset is the action servlet which makes for > a nice seperation between

when to use Struts

2002-08-18 Thread neal
I am new to struts and am attempting to get my around how valuable it would be me. >From what I gather, it's primary asset is the action servlet which makes for a nice seperation between the view and the control. I also understand that if provides some useful tools such as a connectionPool for J

Re: Config Tiles Plugins with Sub-Module....

2002-08-18 Thread Cedric Dumoulin
Hi, You need the Tiles plugin in each sub-module using the tiles definitions. The first tiles plugin called creates the Tiles factory. The others only set the appropriate request processor associated with the previously created factory. Cedric Trieu, Danny wrote: >Cedric, > >Worki

Re: tons of tiles debug messages!

2002-08-18 Thread Cedric Dumoulin
hi, This is for struts 1.1b2. For struts 1.0.x, you specify definition factory configuration in web.xml. Attribute names and values are the same. In your case, set all debug attributes to 0 (zero), or remove them from web.xml (zero is the default value). Cedric mpopovits.rm wro

RE: Struts Community is going crazy! :-))

2002-08-18 Thread Phase Web and Multimedia
I hope my original message is not taken as a slam on struts. I love it. I want to chorus in by saying "GOOD JOB STRUTS TEAM!". I am just wondering if my thoughts are totally unfounded or have some validity. I have been known to be an idiot. :-) Brandon Goodin Phase Web and Multimedia P (406) 862-

Re: Case insensitive path attributes of ?

2002-08-18 Thread Steinar Bang
> "Craig R. McClanahan" <[EMAIL PROTECTED]>: > On Fri, 16 Aug 2002, Steinar Bang wrote: >> Is it possible to make the Struts ActionServlet class treat the >> path attributes of elements in the struts-config.xml file, >> as case insensitive? > No. OK. It was a long shot anyway, and I didn

Re: Struts Community is going crazy! :-))

2002-08-18 Thread Kenneth Stout
Brandon, I agree with your cry for better "suggested" patterns. I've been working with struts for less than six months and looking for patterns has been a constant endeavor. I have 8-inches of printed documents plus several megabytes of disc space dedicated to everything that I've been able to ge

RE: form submit() method is not recognized.

2002-08-18 Thread Ade Barkah
I believe it's already changed in 1.1, you can simply do and it should submit the form fine. regards, -Ade -Original Message- From: Olga Agady [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 18, 2002 1:47 AM To: Struts Users Mailing List Subject: Re: form submit() method is not recogn

Struts Community is going crazy! :-))

2002-08-18 Thread Phase Web and Multimedia
I have seen so many extensions and ideas being developed around struts. One of the things that I have noticed is that there are a lot of different apporaches being taken towards using Struts. In my own conversations with colleagues I have found that there is a fair amount of confusion mounting ove

Re: struts-example.war

2002-08-18 Thread Markus Meissner
Am Sonntag, 18. August 2002 17:22 schrieb James Mitchell: > You must have extracted these files incorrectly. Mmh, I have these files extracted incorrectly. Thanks. > > Please try again or just deploy the .war "as is" > > Now, I get the error reported in http://www.mail-archive.com/struts-user@jaka

RE: struts-example.war

2002-08-18 Thread James Mitchell
You must have extracted these files incorrectly. Please try again or just deploy the .war "as is" James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta > -Original Message- > From: Markus Meiss

Re: form submit() method is not recognized.

2002-08-18 Thread Ganesh Puri
Thanks ! it works like a charm ... - Original Message - From: "Olga Agady" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Sunday, August 18, 2002 12:47 AM Subject: Re: form submit() method is not recognized. > Hi, Ganesh > > I have good news: I found a sol

struts-example.war

2002-08-18 Thread Markus Meissner
Hallo, I downloaded the binary distribution jakarta-struts-1.1-b2.zip and installed the struts-example.war within my weblogic server. Starting the webapp I get the following error: INFO: Initializing, config='org.apache.struts.webapp.example.ApplicationResources', returnNull=true java.lang.C

RE: XP (and not the Microsoft kind)

2002-08-18 Thread Andrew Hill
Hehe for a bit of a flashback have a look at this lecture given by Edsger W.Dijkstra back in '72. http://www.cs.utexas.edu/users/EWD/ewd03xx/EWD340.PDF (For the index to that collection look at:) http://www.cs.utexas.edu/users/EWD/indexBibTeX.html -Original Message- From: Ted Husted [ma

conditional flow

2002-08-18 Thread Ilanit Simantov
Hi, where can I find more information about the workflow proposal, especially conditional/dynamic flow/navigation ? Sincerely, Ilanit SimanTov Iway++ , R&D Sapiens Tech. Modernizing Business Processes Through Proven IT Solutions http://www.sapiens.com/ Mailto: [EMAIL PROTECTED] Tel: +972-8-93