startserver // Linux startserver.bat // Windows
http://localhost:8080/
stopserver // Linux stopserver.bat // Windows
// Linux
set JSWDK = ... // Installation directory
javac -classpath ".:${JSWDK}/lib/xml.jar:${JSWDK}/lib/servlet.jar" MyFile.java
// Windows
set JSWDK= ... // Installation directory
javac -classpath ".;%JSWDK%/lib/xml.jar;%JSWDK%/lib/servlet.jar" MyFile.java
examples/WEB-INF/servlets
HelloWorldExample.java ...
http://localhost:8080/examples/servlet/MyServlet
<WebServer id="webServer">
<Service id="service0" port="1234">
...
</WebServer>