|
What this is
Other links
The source code/* * $Id: Mismatch2.java,v 1.1.1.1 1999/10/09 00:20:58 duncan Exp $ */ package dispatch; import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class Mismatch2 extends HttpServlet { private ServletContext context; public void init() { context = getServletConfig().getServletContext(); } public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException { res.setContentType("text/plain"); ServletOutputStream sos = res.getOutputStream(); sos.println("SOS OUT"); try { PrintWriter pwo = res.getWriter(); pwo.println("NO"); } catch (IllegalStateException ise) { sos.println("YES"); } sos.println("FINISH"); } } |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.