Previous: PB Ex Servers, Up: PB Java Examples [Contents][Index]
This section will briefly describe how to set up a Tomcat server so that is it possible to test the example JSPs. Some knowledge about how to run Tomcat and how to set up your own web application is required. Detailed information about Tomcat is available at http://jakarta.apache.org/tomcat/.
The following example has been tested with Tomcat 9 on Ubuntu
22.04. Please note: Tomcat 10 has changed incompatibly and
will give an error in Java, “Unable to compile class for JSP” caused
by the migration from javax.servlet
to “Jakarta EE”. So, in
order to use Prologbeans with Tomcat 10 you would probably need to
modify prologbeans.jar.
Assuming that the environment variable CATALINA_BASE
is set to
the directory where Tomcat looks for its webapps/ folder, do
the following:
<Context docBase="PB_example"> <Resource name="prolog/PrologSession" auth="Container" type="se.sics.prologbeans.PrologSession" factory="org.apache.naming.factory.BeanFactory" /> </Context>
<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <resource-env-ref> <description> Object factory for PrologSession instances. </description> <resource-env-ref-name> prolog/PrologSession </resource-env-ref-name> <resource-env-ref-type> se.sics.prologbeans.PrologSession </resource-env-ref-type> </resource-env-ref> </web-app>