• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

jBoss and EL

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have been having a devil of a time getting EL to work on jBoss. I installed the latest build and have JDK1.5 working. I downloaded the JSTL packages and installed them in the correct place. Everything works fine with a standalone version of Tomcat (5.5.x or 5.x)

I tried the jBoss forums and looked for problems with EL, but didn't find any fixes.

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

Work fine, but when I get to:

${fn:escapeXml(cookie.userName.value)}
${fn:escapeXml(cookie.password.value)}

They don't get evaluated and the web page prints out the EL.

I know it is just something simple. Is EL turned off by default in jBoss?
 
Will Fleming
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Found it.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

Needed to be removed from my jsp file.
 
reply
    Bookmark Topic Watch Topic
  • New Topic