On Wed, 24 Oct 2001, Michael A Nachbaur wrote: > We could copy J2SE's way of using a 'web.xml' definition > for that host, but I still don't see how to get around > the library issue.
what's the library issue? with wombat & libservlet (being a port of the java servlet stuff), you have a special WEB-INF directory in the webapp's root directory that contains: 1) web.xml, the application config file; and 2) a lib directory containing the classes for the application. that lib directory is added to @INC by wombat when it initially loads the webapp. check out http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/wombat/webapps/examples/ for what a really simple webapp looks like. on the wombat todo list is to support war files, which basically consists of tar xzf.
