Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Back to Top

Modify the WAR files

Open the web.xml file located in the <session_home>/src/webapp/WEB-INF directory and make sure the following taglib element is not commented out.

Code Block
xml
xml
borderStylesolid
titleExcerpt from the web.xml file

...
	 <taglib>
	 	<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
		<taglib-location>/WEB-INF/tld/c.tld</taglib-location>
	</taglib>
...

Open the two jsp files, stateless.jsp and stateful.jsp located in the <session_home>/src/webapp directory and make sure the following line is present:

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

Back to Top

Build the sample application

...