RE: change default servlet

2001-05-30 Thread Randy Layman
Either create a mapping in the web.xml file (using servlet and servlet-mapping tags, or edit the server.xml file and change the ServletInvoker's prefix. The first is definitely the preferred method since its supported by the JSP Spec and doesn't affect any other servlets. The second is

RE: change default servlet

2001-05-30 Thread Asa Bar-David
/ -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 4:21 AM To: [EMAIL PROTECTED] Subject: RE: change default servlet Either create a mapping in the web.xml file (using servlet and servlet-mapping tags, or edit the server.xml file and change

RE: change default servlet

2001-05-30 Thread Michael Wentzel
when deploying a WAR file I always need to add the WAR file name before the /servlet/ for example: if the WAR file name is Tash.war when posting to a servlet I need to write /Tash/servlet/servletName. On the IDE I'm using (Forte for java)the default servlet uri is /servlet/ with no