IRC #struts on freenode

2006-08-26 Thread Wendy Smoak
If anyone is on IRC, we have a channel: #struts on chat.freenode.net . It now (well, if I'm there,) has a strutsbot, though it doesn't know much yet and isn't *nearly* as talented as fajita on #apache. Drop by and teach it a few things. :) -- Wendy http://wiki.wsmoak.net/cgi-bin/wiki.pl?Freen

Problem with Checkbox from Database to JSP

2006-08-26 Thread Mississippi John Hurt
I'm trying to populate a list of checkboxes, some checked, some not from the database. I followed the Husted Tip#7 but still have problem. My actionform has 2 arrays 1 for selected (selectedFormPropertyArray), 1 for all checkboxes (allFormPropertyArray) populated fine. But when I go to the jsp, i

Re: [OT] migrate Struts app from jdk 1.4 to jdk1.5

2006-08-26 Thread Scott Van Wart
Thibaut wrote: I migrate a Struts app from jdk 1.4 to jdk1.5 I have warnings I would like to solve : 1) the clone() function I have a "Type Safety" exeption with this kind of code : current.setUserRights((TreeSet) this.userRights.clone()); 2) Cast make a warning : TreeSet mySet = (TreeSet) req

RequestProcessor/Hibernate3/Transactions [hib3tx]

2006-08-26 Thread Dave Newton
Hi all, Somehow got roped into doing another Struts (old-sk00l) project?! We're using Struts 1.2.x/Hibernate3 on Weblogic 8.1 and I have a question regarding how people have dealt with transactions and exception recovery. My first solution was a filter (I've currently handling Ajax requests via

Struts 1.2 and the Validator Framework, how does this work ? continue

2006-08-26 Thread Ingimar Erlingsson
thanks for the reply. I am not yet used to this mailing list, sorry for that, I probably could have continued this question in the same thread - but not knowing how to do that. Niall you are probably right, that I should upgrade. Using Exadel and it's support for Struts, it only says struts 1.2 s

[OT] migrate Struts app from jdk 1.4 to jdk1.5

2006-08-26 Thread Thibaut
I migrate a Struts app from jdk 1.4 to jdk1.5 I have warnings I would like to solve : 1) the clone() function I have a "Type Safety" exeption with this kind of code : current.setUserRights((TreeSet) this.userRights.clone()); 2) Cast make a warning : TreeSet mySet = (TreeSet) request.getSession()

Re: Saving a bean in a specific context!!

2006-08-26 Thread Puneet Lakhina
On 8/26/06, vinicius <[EMAIL PROTECTED]> wrote: I know how to save a bean in the session context, doinh this: request.getSession().setAttribute("beanName",Object); But i don't find how I save a bean in the Aplicattion or page context!! Could someone help me?? Thanks Application Conte