RE: my first servlet

2003-02-13 Thread Mike Jackson
Is your servlet in a package? You if it is and you haven't specified a name for the servlet you'll need to supply the package and class name, ie http://localhost:8081/servlet/org.dorkmaster.servlet.db2xml Also, you might also want to remember that the java style guidelines specify that classes

RE: my first servlet

2003-02-13 Thread Jose Moreira
17:04 Para: Tomcat Users List Assunto: RE: my first servlet Is your servlet in a package? You if it is and you haven't specified a name for the servlet you'll need to supply the package and class name, ie http://localhost:8081/servlet/org.dorkmaster.servlet.db2xml Also, you might also want

Re: my first servlet [Off Topic]

2003-02-12 Thread Mehdi . Nejad
Jose, Sounds like an ambitious first servlet, I think mine was called Hello World :) Check the error logs tomcat_home/logs/stdout.log (or catalina.out). since your getting a 503, i'd suggest checking to see if Tomcat is working. See more on 503 here.

RE: my first servlet

2003-02-12 Thread Jacob Hookom
Check your logs to see if your servlet is even initialized | -Original Message- | From: Jose Moreira [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, February 12, 2003 5:00 AM | To: Tomcat Users List | Subject: my first servlet | | hello, i created my first servlet called db2xml but when i