Re: database design

2005-10-08 Thread Rafael
Or if you have Rational license, you can use Rational Software Modeler. My 2 cents.. :-) -Rafael T Icibaci - Original Message - From: "Mark Benussi" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" ; "'Rafael Taboada'" <[EMAIL PROTECTED]> Sent: Tuesday, October 04, 2005 2:08 PM

Re: Fast war deployment

2005-10-08 Thread Martin Gainty
Mikolaj- Whatever IDE you use you can export a build.xml install ant and you now have fine-grained control on the build Also you can add all the spurious tasks such as javadoc, remote deploy, jsp compile Probably not applicable for initial development but Critically important when deploying to Q

Re: Is this an appropriate use for plugins

2005-10-08 Thread Niall Pemberton
See http://wiki.apache.org/struts/StrutsPlugins Niall - Original Message - From: "Faisal Mahmoud" <[EMAIL PROTECTED]> Sent: Saturday, October 08, 2005 8:34 PM For the webapp I am writing, I have several compenents that run as services that always need to be available. I refer to them

Is this an appropriate use for plugins

2005-10-08 Thread Faisal Mahmoud
For the webapp I am writing, I have several compenents that run as services that always need to be available. I refer to them as JobManagers. Basically, a job handler will receive a job request, add that job to it's job queue and then launch a thread to work on the job. I plan on having these JobMa

Re: Fast war deployment

2005-10-08 Thread Mikołaj Koziarkiewicz
Alternatively to what Vic proposed, you can reload and/or redeploy a selected app via the Tomcat Manager Webapp. Hello all: Everytime I deploy my .war file on my server, restart Tomcat and access the JSPs and actions it will compile (make JSPs servlets) and load them. It takes a time the fi

Re: Cannot find a bean in the session

2005-10-08 Thread Faisal Mahmoud
:) Thanks for the help Wendy, I was looking at the wrong object, it wasn't a typo. Yet another reason why coding at 8pm on a Friday is a bad idea. On 10/8/05, Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: "Faisal Mahmoud" <[EMAIL PROTECTED]> > > > Secondly, in my ContactSupportAction class (subcl

Re: Cannot find a bean in the session

2005-10-08 Thread Wendy Smoak
From: "Faisal Mahmoud" <[EMAIL PROTECTED]> Secondly, in my ContactSupportAction class (subclass of struts Action), I attempt to retrieve this bean from the session and call it's getEmail() method. However, the result of (UserInfoBean) request.getAttribute("userInfoBean"); returns a NULL referenc

More OT (possible rant) Re: RE: Development philosophy and such (was: Base action class)

2005-10-08 Thread Martin Gainty
Dharmendra Speaking as someone who has a 10 year old gas guzzler..yes I admit everything is wrong with the vehicle and it eats gas but at least its paid for! Yes I worked for someone who wanted to re-engineer my J2EE application to Perl (because they did not understand OO) I think it is impera

Re: Struts, Tiles and Internationalization

2005-10-08 Thread Danny Lee
Hi! I thing you don't have to put the language-oriented tags. Just do the normal Struts-Internationalization with applicaition_resources, this technique is independent of using tiles or not and works great. Choosing language manually is another issue. It will work anyway by Struts reading t

Re: set different attribute according to the change of parameter

2005-10-08 Thread 梁炳場
My action class like this public ActionForward userProfileMaint (ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { HttpSession session = request.getSession();

Re: set different attribute according to the change of parameter

2005-10-08 Thread 梁炳場
Should the parameter be passed into Action class by http://xxx/foo?a=b ? Can the Action class get the parameter value and the link is http://xxx/foo only? I do not want the parameter appear in the URL. Thanks 2005/10/8, Laurie Harper <[EMAIL PROTECTED]>: > 梁炳場 wrote: > > Can I do the following?