Multi-Application Support

2006-04-20 Thread Matthew Ryan
Hello all, I was wondering whether many people are using the Multi-Application Support in Struts and whether anyone knows of any examples on the web of implementing the Multi-Application Support? I'm not familiar with the Multi-Application Support and am curious whether this may be a means to org

Re: RE : Post -> Redirect -> Get

2005-01-20 Thread Matthew Ryan
The site has some trouble. However I have downloaded the archive and run it in my own install of Tomcat and not had any problem with it. Matt Quoting Michaƫl Bienstein <[EMAIL PROTECTED]>: > I got an error 500 when I tested the prgtoolkit.htm application entering > "123" for the value of a ne

Re: Post -> Redirect -> Get

2005-01-19 Thread Matthew Ryan
Thanks again Craig. Matthew Quoting Craig McClanahan <[EMAIL PROTECTED]>: > On Thu, 20 Jan 2005 13:27:59 +1000, Matthew Ryan > <[EMAIL PROTECTED]> wrote: > > Want to ask if many people implement something of a PRG in the handling of > > Actions (and forwards)? >

Post -> Redirect -> Get

2005-01-19 Thread Matthew Ryan
Want to ask if many people implement something of a PRG in the handling of Actions (and forwards)? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Struts and DreamWeaver

2004-12-22 Thread Matthew Ryan
If you don't mind parting with a few dollars you can buy the equivalent of a Struts Plugin for Dreamweaver. http://www.fwasi.com/products/ All the best Matthew Ryan - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

RE: Where to put the business logics?

2004-09-21 Thread Matthew Ryan
Don't forget Darren Broemmer's : J2EE Best Practices Publisher: Wiley; 1 edition (November 8, 2002) ISBN: 0471228850 Book well worth reading and having in the shelf. Matt Quoting sridhar ramalingam <[EMAIL PROTECTED]>: > Mastering Enterprise JavaBeans by Ed Roman, Scott W. Ambler and Tyler >

Re: System.out.println

2004-08-05 Thread Matthew Ryan
Sinner. Implement Log4J, drop all the System.out.println's. http://logging.apache.org/log4j/docs/index.html On 5/8/04 4:18 PM, "Shailender Jain" <[EMAIL PROTECTED]> wrote: > Hi, > > During the development of the project we used System.out.println to do > the debugging. > > Now i want to put

RE: executeBatch

2004-07-26 Thread Matthew Ryan
I had to insert 1,300,000 records the other day in one hit. first I used Statements, then PreparedStatements, both took time. Then I just used piped the files in from the shell. The difference was unbelievable. Do you have to use Java? If it is a one-time, hit and run, get them in there, then you

RE: RE : Struts, XDoclet, and Maven...

2004-06-28 Thread Matthew Ryan
I wouldn't argue against the points Rick is making, particularly the benefit of central place for configuration information as opposed to marking it out all over the shop. I will throw one thing out there though. When you have lots of Action Mappings and subsequent Action classes that are in a stat

RE: Row

2004-04-16 Thread Matthew Ryan
Hi, in JSP the HttpSession is an implicit object called 'session'. You can put objects into the 'session' like this : session.setAttribute("key",); in a Struts Action you can get a refence to the session from the Request object's getSession method call. if you were to give that HttpSession you d

logic:iterate question, for ArrayList of String arrays

2004-04-15 Thread Matthew Ryan
Hi, I have a session object with is an ArrayList of String arrays, all of length 2. Basically just two strings 'code' and 'description'. I want to iterate of the ArrayList for option tags in a dropdown list. I have been using a For Loop, getting each element, casting it to String[] and then pu

Abstraction one way, Direct access the next

2004-03-30 Thread Matthew Ryan
I was wondering whether someone could tell me what is the best practice in the following scenario. Ok, performing data input I can encapsulate data in a Form Bean (whatever it may be ActionForm, DynaActionForm,etc) pass it along to the Action mapped through struts-config.xml, then at the Action cl