Exception Handling with Struts 1.02

2002-11-14 Thread Marcus Biel
I've just read Chuck's Chapter about Exception Handling (O'reilly Struts Book). Now I am trying to accomplish what he suggested. Unfortunately I am forced to used Struts 1.02. return mapping.getInput(); didn't work - it gives back a String, but my Action class needs to return an ActionForward.

Re: Exception Handling with Struts 1.02

2002-11-14 Thread Gemes Tibor
2002. november 14. 10:02 dátummal Marcus Biel ezt írtad: return mapping.getInput(); didn't work - it gives back a String, but my Action class needs to return an ActionForward. (Struts 1.02). So I tried it that way: return mapping.findForward(mapping.getInput() ); return new

Re: Exception Handling with Struts 1.02

2002-11-14 Thread Marcus Biel
Works fine! Thanks! marcus [EMAIL PROTECTED] schrieb: 2002. november 14. 10:02 dátummal Marcus Biel ezt írtad: return mapping.getInput(); didn't work - it gives back a String, but my Action class needs to return an ActionForward. (Struts 1.02). So I tried it that way: return