|
What this is
Other links
The source code
/*
* $Id: Mismatch1.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 Mismatch1 extends HttpServlet {
private ServletContext context;
public void init() {
context = getServletConfig().getServletContext();
}
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws IOException
{
res.setContentType("text/plain");
PrintWriter pwo = res.getWriter();
pwo.println("PWO OUT");
try {
ServletOutputStream sos = res.getOutputStream();
sos.println("NO");
} catch (IllegalStateException ise) {
pwo.println("YES");
}
pwo.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.