I am not sure if i already did post a reply to ur question but here's something
u could use to get the exception back to the client in html format

catch ( Exception ex )
        {
            // HttpServletResponse response

            ServletOutputStream sos = response.getOutputStream ( );
            sos.print ( "<html><body>" );
            sos.print ( "blah blah <i>not</i> done ." );
            sos.print ( "<p>" );
            sos.print ( "Error doing blah blah: <b>" + ex.getMessage() + "</b>"
);
            sos.print ( "</body></html>" );
            sos.flush ( );

        }

hth

rajeev muralidharan

"Be the change that you want to see in the world - M.K.Gandhi"

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to