TryCatchFianlly requires servlet 2.3?

2003-03-11 Thread Shawn
Someone told me that since our tags impliment a tryCatchFinally clause,
we need to use servlet2.3.

Is that right?

I though tryCatchFinally was just basic syntax.
-- 
Shawn [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: TryCatchFianlly requires servlet 2.3?

2003-03-11 Thread Bill Barker
If you want to use a Tag like:
  public class MyTag implements Tag, TryCatchFinally {
  ...
  }

then you need to use Servlet-2.3/JSP-1.2 (since the TryCatchFinally class
was introduced in JSP-1.2).

If you want to do something like:
  % try { %
 ...
  % } catch(Exception ex) {
 ...
   } finally {
...
  } %

then this will work for Servlet-2.2/JSP-1.1 as well.

Shawn [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Someone told me that since our tags impliment a tryCatchFinally clause,
 we need to use servlet2.3.

 Is that right?

 I though tryCatchFinally was just basic syntax.
 --
 Shawn [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]