Hi - I get this strange error when running the sollution on tomcat, while if
I run it on JBoss it works like a charm. Anyone got an idea?


  | error:org.apache.jasper.JasperException: Unable to compile class for JSP 
  | An error occurred at line: 4 in the jsp file: /webshop_handlekurv.jsp 
  | Generated servlet error: Syntax error on token "enum", delete this token 
  | An error occurred at line: 4 in the jsp file: /webshop_handlekurv.jsp 
  | Generated servlet error: Syntax error on token "enum", invalid Expression 
  | An error occurred at line: 4 in the jsp file: /webshop_handlekurv.jsp 
  | Generated servlet error: Syntax error on token "enum", delete this token.
  | 

And here is a snippet of that particular code:


  | if (strUpdate != null) {
  |     Enumeration enum = request.getParameterNames();
  |     while (enum.hasMoreElements()) {
  |             String parameter = (String)enum.nextElement();
  |             
  |             if (parameter.equals("ref") || parameter.equals("getTab") || 
parameter.equals("getuTab") || ... ) {
  |             } else {
  |           :
  |           :
  |           .
  | 

Thanks in advance!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3909043#3909043

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3909043


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to