2 Replies Latest reply on Jun 25, 2002 8:23 AM by tbfmicke

    Problems With Jetty

    rkprasan

      Hi,

      I invoked a JSP Page from the browser I got the follwing error

      ***************
      HTTP ERROR: 500 Unable to compile class for JSP An error occurred at line: 380 in the jsp file: /home/PORTmyday_appoints.jsp Generated servlet error: /tmp/Jetty__8080___portal/home/PORTmyday_0005fappoints$jsp.java:242: No method matching print() found in class javax.servlet.jsp.JspWriter. out.print(); ^ 1 error
      RequestURI=/portal/home/PORTmyday_appoints.jsp
      ***************

      I dont know what to do, Help me out

      Regards,
      K.Prasanna

        • 1. Re: Problems With Jetty
          tbfmicke

          All variants of the print method takes an argument, telling what is to be printed :-)

          println() is possible to call without arguments.

          Regards

          • 2. Re: Problems With Jetty
            tbfmicke

            You need to give an argument to the print method, for example print("hello") ...

            println() can be called without arguments.

            (Sorry if this appears twice... my first answer seems to have disappeared)