Hi,

I am successfully running JSP's with Tomcat standalone.

However I want to add extra information on the end of the URL with POST and GET 
methods.
e.g.:
      http://myhost/myApp.jsp?name=fred
           or
      http://myhost/myApp.jsp/Login
          or
      http://myhost/myApp.jsp/Login?name=fred&pass=bananas

The first one works fine for GET as standard, and I've managed to get it to work
for POST by adding the following to WEB-INF/web.xml

   <servlet>
      <servlet-name>
          jsp
      </servlet-name>
      <servlet-class>
          org.apache.jasper.servlet.JspServlet
      </servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>
            jsp
        </servlet-name>
        <url-pattern>
            *.jsp/*
        </url-pattern>
    </servlet-mapping>

However I can't get the second two to work for either GET and POST

Does anyone have any ideas ?

Thanks
JohnT
-- 
John Taylor            J T Response Limited
Director               Internet Solutions for Business
                       +44 (0)1954 261146

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to