I am trying to integrate xfomrs with a sample webapp , I followed instructions from the xforms wiki , I added all the filters and jar files required for integration in my sample webapp here is my web.xml
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
<filter>
<filter-name>orbeon-xforms-filter</filter-name>
<filter-class>org.orbeon.oxf.servlet.OrbeonXFormsFilter</filter-class>
<init-param>
<param-name>oxf.xforms.renderer.context</param-name>
<param-value>/orbeon</param-value>
</init-param>
</filter>
<!-- Any web resource under /xforms-jsp is processed by the XForms engine -->
<filter-mapping>
<filter-name>orbeon-xforms-filter</filter-name>
<url-pattern>/xforms-jsp/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
</filter-mapping>
</web-app>
I am using tomcat and I also added crossContext .
when I call the any url containg xforms-jsp I am getting a blank page ,
orbeon.war has this jsp guess-the-number/index.jsp
I tried calling
http://localhost:8080/myxforms/xforms-jsp/guess-the-number/index.jsp
the browser just gives a blank page .
there are nor errors in tomcat console or logs , please advice ,I want to call any form from orbeanwar in this sample app.