> output is to call the destroy() method.  I do not want to destroy the
> servlet process and all it's sessions etc. etc., I just want to suspend
> any further print output.  I can elaborate if necessary.....any
> suggestions??

If you want to terminate your service of the request, just return from
the method.

public void doGet(request, response) throws ... {
    // blah blah blah
    // ......

    // woops, I want out of here
    if (I want out) {
        return;
    }

    // more processing if I didn't allready bail
}

___________________________________________________________________________
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