JSP page directive

2008-06-30 Thread Sean Doyle
Hi.. If a jsp has a page directive of the following form <%@ page contentType="application/x-java-jnlp-file" %> then all request.getParameter() calls return null. Other calls to request (like request.getMethod() ) work correctly. Example URL: http://localhost:8090/DDL/app/ddl.jsp?DICOMRemoteAETit

Re: JSP page directive

2008-07-03 Thread Sean Doyle
Problem solved: Two changes: First line of the jsp is now: <%@ page contentType="application/x-java-jnlp-file" %> and in web.xml the trimSpaces parameter is set to true. Now the request.getParameter() call works fine. On Mon, Jun 30, 2008 at 5:16 PM, Sean Doyle <[EMAIL PROTECTED]> wrote: >