.NET
jqa128.txt
Associated article: Java Q&A
Tags: .NET
Published source code accompanying the article by David Pitt in which he discusses two ways you can use Java servlet technology to create server-based Java applications with the ability to interact with web-based clients using HTML or serialized Java objects. Also see JQA128.ZIP.
Java Q&A
by W. David Pitt
Listing One
public abstract interface Servlet
{
public abstract void destroy();
public abstract javax.servlet.ServletConfig getServletConfig();
public abstract java.lang.String getServletInfo();
public abstract void init(javax.servlet.ServletConfig arg1)
throws javax....


