I tried to incorporate sitemesh in my application and deploy in the
AppEngine .Its working properly in the development environment .But
not working when uploaded to the cloud .
Downloaded sitemesh-2.4.2.jar and added WEB-INF/lib directory.
Added the below config in web.xml
<filter>
<filter-name>sitemesh<filter-name>
<filter-class>
com.opensymphony.module.sitemesh.filter.PageFilter
</filter-class>
<filter>
<filter-mapping>
<filter-name>sitemesh<filter-name>
<url-pattern>/*</url-pattern>
<filter-mapping>
Created a /WAR/WEB-INF/decorators.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<decorators defaultdir="/">
<decorator name="main" page="main.jsp">
<pattern>/*</pattern>
</decorator>
</decorators>
Its working in the localhost but not on the cloud .Let me know if you
found any issue .
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.