Before you begin
Design a Web application and the components that it needs.For general Web application design information, see "Resources for learning."
Why and when to perform this task
There are two basic approaches to selecting tools for developing Web applications:
The following steps support the second approach, development without an IDE.
Steps for this task
For example, to compile a servlet running on the Windows NT version of WebSphere Application Server, specify:
javac -classpath D:\Program Files\WebSphere\AppServer\lib\j2ee.jar MyServlet.java
To compile that same servlet on the Windows NT version of WebSphere Network Deployment, specify:
javac -classpath D:\Program Files\WebSphere\DeploymentManager\lib\j2ee.jar MyServlet.java
What to do next