[HELP]onchange in the tag

2005-06-10 Thread Leandro_Dorileo/ABACO
Hi all! I have a tag and in the onchange I need pass a little javascript, till here no problem, but, I need put in the middle of this javascript a string from my formbean. I thought some thing like this: ';form.submit();"> But certainly it does not work, but I couldn't thing and find anythi

Re: Can't get working

2005-06-10 Thread Leandro_Dorileo/ABACO
The will always look for an ActionMessages (in any context) identified by the "key" property configured in the exception element in your struts-cfg, if no such object is found then nothing is done. Have you configured your application init-param in your web.xml? Perhaps you might review your s

RE: html:select few doubts

2005-06-09 Thread Leandro_Dorileo/ABACO
I tryied it and worked properly. In my action I did: MyFormBean f = (MyFormBean)form; request.setAttribute("myList",f.getMyList()); and in the JSP I did exactly like noted in the last mails. But, what if my collection is a field of my form bean? can't I do like the following?

html:select few doubts

2005-06-09 Thread Leandro_Dorileo/ABACO
Hi All! I've never used this tag before and I'm not so good with taglibs then please correct my mistakes if I commit any. I got the following example in a recent thread here in this mailing list: Ok, few things I could already understand, in the html:select tag there are

Re: Struts 1.2.7 JAR files different from Commons JAR files

2005-06-08 Thread Leandro_Dorileo/ABACO
> i noticed that the Struts 1.2.7 distribution includes many JAR files > with the same name as the Jakarta Commons project JAR files. > however, i discovered that there are real differences between them. > for example, there are a lot more classes in the Struts > commons-fileupload.jar than in th

RE: Please reply to the mailing list, not to the person

2005-06-08 Thread Leandro_Dorileo/ABACO
Execuse me Wendy if you are she and not he, I've never known anyone called Wendy (Internet troubles);-( Dorileo "David G. Friedman" <[EMAIL PROTECTED]> 08/06/2005 14:19 Favor responder a "Struts Users Mailing List" Para "Struts Users Mailing List" cc Assunto RE: Please reply to the mail

Re: Please reply to the mailing list, not to the person

2005-06-08 Thread Leandro_Dorileo/ABACO
Agreed to everything, but perhaps we can think more about what Mr. Smoak said "get more personal replies", personal replies are good because you can see in your mailbox that there is a reply especially to you and that would be good you read that (it's only my opinion and I even do that), but we

Re: Best Place for config values

2005-06-08 Thread Leandro_Dorileo/ABACO
>Whats the best place / access method to storing and retriving config attributes like administrator email addresses >and directories to store uploaded files in a multi-tiered webapp, web.xml? Resources file? Both servlets and non >servlets need to access these values. Opinions greatly apprec

Re: Error Handling Strategy

2005-06-08 Thread Leandro_Dorileo/ABACO
>In my new application design I am employeeing this strategy and using >custom ExceptionHandler classes to catch, log, and redirect the user >to the appropriate pages. In my Exception classes, instead of a >non-localized string as the exception message, I use a message key >which I can then retrie

Re: struts - view, create, update user page

2005-06-06 Thread Leandro_Dorileo/ABACO
Let me see if I undertood well, are you willing a paper about "patterns to work with struts"? Try to read about MVC, I think it's a good startup. * Leandro Dorilêo Desenvolvedor Java ÁBACO Tecnologia de Informação Ltda Qualidade: Um Compromisso de todos! ( (0xx65) 617-0777 ( FAX 623-0646 To

Re: Exception Handler

2005-06-06 Thread Leandro_Dorileo/ABACO
Hi Joe! When I posted the initial mail I didn't understand well how ExceptionHandler works, but now I think already do, I'll tell you how I figure it out and if perhaps I'm wrong please correct me, ok? - We can have as many exceptionHandler as we need, and we configure who will be or Exception

Exception Handler

2005-06-03 Thread Leandro_Dorileo/ABACO
I'm working in a project where I'm planning to use my own implementation of ExceptionHander, I know that I need extend the org.apache.struts.action.ExceptionHandler and overwrite the execute method, I also know that I need use the taglib and configure my action to work with my own ExceptionHan