I'm working through a SWF tutorial which contains the following JSP page:
When this page is displayed the ${flowExecutionUrl} el variable is not rendering correctly. If I look at the page source it looks like this:Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Register - GeekWarez</title> </head> <body> <h1>Register</h1> <div> <a href="${flowExecutionUrl}&_eventId=submitRegistration">Submit</a> <a href="${flowExecutionUrl}&_eventId=cancelRegistration">Cancel</a> </div> </body> </html>
I am using Tomcat 6.0Code:<div> <a href="${flowExecutionUrl}&_eventId=submitRegistration">Submit</a> <a href="${flowExecutionUrl}&_eventId=cancelRegistration">Cancel</a> </div>
Java 6
jboss-el-2.0.1.GA.jar
spring-webmvc-2.5.5.jar


Reply With Quote