Web Development
psp2.txt
Associated article: Python Server Pages: Part II
Tags: Web Development .NET JVM Languages
Published source code accompanying the article by Kirby Angell in which he discusses Python Server Pages (PSP) is a server-side scripting engine designed along the lines of Microsoft's Active Server Pages (ASP) and Sun's Java Server Pages (JSP) specification.
Python Server Pages: Part 2
by Kirby W. Angell
Listing One
public class PSPServlet extends HttpServlet {
PyObject m_cgEngine = null;
static {
// Initialize the JPython interpreter
PSP.interp.exec( "import sys" );
// Put our installation directory at the beginning of the ...


