You put your JSP and servlet code directly in your assigned FTP directory using an FTP upload program like FTP Voyager. You don’t use a WEB-INF structure.
People using your MyJavaServer JSP apps will access a URL like this:
http://www.myjavaserver.com/~roedy/helloworld.jsp
People using your MyJavaServer Servlets will access a URL like this:
http://www.myjavaserver.com/servlet/roedy.HelloWorldServlet
You are sharing the Servlet womb with everyone else.
Note that your Servlets must all be in a root package the same as your account name. You must manually compile them with the Util ⇒ Java menu item. JSP’s are autocompiling.
| Type | driver access | Notes |
|---|---|---|
| In-Memory | jdbc:hsqldb:. | No persistence. An applet, for example, could have his very own database running in its own JVM. |
| Standalone Engine | jdbc:hsqldb:DATASET | Uses files only. |
| Server Engine | jdbc:hsqldb:hsql://someserver.com:9001 | Allows access from applications running on other machines on the net. |
| WebServer Engine | jdbc:hsqldb:http://someserver.com:80 | toy webserver that lets you issue SQL commands from a browser. |
![]() |
and suggestions to improve this page to Roedy Green : | ||
| Canadian Mind Products | |||
| mindprod.com IP:[65.110.21.43] | |||
| Your face IP:[38.103.63.18] | ![]() | ||
| You are visitor number 7,175. | |||
| You can get a fresh copy of this page from: | or possibly from your local J: drive (Java virtual drive/Mindprod website mirror) | ||
| http://mindprod.com/jgloss/myjavaserver.html | J:\mindprod\jgloss\myjavaserver.html | ||