| Ethan Guiles 2005-09-06, 5:50 pm |
| Hi All,
Netware 6.5 sp3. Tomcat 4.1.30.
Trying to learn how to deploy Tomcat apps. Going through the O'Reily
book "Learning Java". Made a simple app which prints "Hello World" on
the screen. It deploys just fine to the Tomcat server downloaded on to
my W2K box from Sun. When I try to install the .war file on Netware,
the same .war file, I get "object not found"
Here is the web.xml file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
<web-app>
<display-name>Hello World app</display-name>
<description>Simple Tomcat app</description>
<servlet>
<servlet-name>helloclient1</servlet-name>
<servlet-class>HelloClient</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>helloclient1</servlet-name>
<url-pattern>/hello</url-pattern>
</servlet-mapping>
</web-app>
There is just one class in the classes subfolder, again which works fine
with the W2K Tomcat server from Sun.
Any advise is appreciated.
Ethan
--
We must not be frightened nor cajoled into accepting evil as
deliverance from evil. We must go on struggling to be human,
though monsters of abstractions police and threaten us.
-Robert Hayden, poet and educator (1913-1980)
|