Appengine not liking my .jspx files
Posted
by Hans Westerbeek
on Stack Overflow
See other posts from Stack Overflow
or by Hans Westerbeek
Published on 2010-06-13T21:15:47Z
Indexed on
2010/06/13
21:22 UTC
Read the original article
Hit count: 342
I have a little app that runs fine on local dev appengine, but appengine itself is not processing my .jspx files.
The jspx files are in WEB-INF so they should not be excluded by appengine (as a static resource)
I am using Apache Tiles to define my views.
So the html produced looks like this:
<html
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:tiles="http://tiles.apache.org/tags-tiles"
>
<jsp:output omit-xml-declaration="yes"/>
<jsp:directive.page contentType="text/html;charset=UTF-8" />
<jsp:directive.page isELIgnored="false"/>
(etc etc)
How can I solve this problem?
© Stack Overflow or respective owner