Hi,
Let's assume I browse to here:
http://java.sun.com/products/servlet/2.2/javadoc/index.html Where in this API does it tell me how to deploy? This is a Programmer's tool to help write servlets. It doesn't at all help me when I want to deploy my servlet.
The unfortunate (or fortunate?) thing about deploying "stuff", is that the actual deployment details are implementation details. In what folder you put class files so that a particular servlet runner can find them, is a detail that is left to the maker of that servlet runner. So everybody does it differently.
In a J2EE server, I think you'd need to bundle your servlet into a WAR file and deploy it as a web component, which would be part of a larger EAR component. This is going from the Reference Implementation, but perhaps other app servers allow just 'simple' servlets to be deployed, without the other stuff. But again, each server is probably different.
If you are using the reference implementation (the one that comes in the dowload of j2sdkee1.2.1), then I can help you with that case. Let me know.