reset password
Author Message
CertainAffinity
Posts: 9
Posted 16:07 Feb 03, 2012 |

my program doesn't work on the server for some reason but it runs fine on my computer.

I edited the web.xml file and it still doesn't work.

I try "http://cs3.calstatela.edu:8080/cs320stu18/wiki/index", and the browser atleast know which servlet to process that request, but it can't find the servlet.

I put all my class files the same folder as my HelloServlet. I still don't know why it doesn't work

 

Edit: it works now. how do i delete thread?

Last edited by CertainAffinity at 16:21 Feb 03, 2012.
cysun
Posts: 2935
Posted 16:21 Feb 03, 2012 |

Use a package for your classes, e.g.


package cs320.hw1;

public class WikiServlet {...}