Problem running servlets in SunOne 4 update 1 CE

When I execute a servlet by pressing the "F6" button from the IDE, Tomcat starts then appear a page with a 503 error about that the servlet is not avaible. But i think that the webserver find the class 'cause it' doesn't give a 404 error it tells that is not avaiable only.
[290 byte] By [MarcoPompili] at [2007-11-25 9:59:31]
# 1
I would suggest using the latest version of the IDE at: http://wwws.sun.com/software/sundev/jde/index.html
706285 at 2007-7-1 20:02:09 > top of Java-index,Development Tools,Java Tools...
# 2

Is your servlet in a web module? That is, is the servlet in a WEB-INF/classes subdirectory? Is the servlet in a package (servlets must be in packages).

Do you execute the servlet by right-clicking on the WEB-INF node in the Explorer window and choosing Execute? Doing so makes the IDE put the context entry into the server.xml file.

What does your web.xml file look like?

Maybe try out this tutorial and see if it works for you:

http://developers.sun.com/tools/javatools/documentation/s1s5/helloweb.html

jetsons at 2007-7-1 20:02:09 > top of Java-index,Development Tools,Java Tools...