"Orbeon Forms - Page Not Found" when publishing custom xform
Posted by
ajls77 on
Apr 26, 2007; 10:55am
URL: https://discuss.orbeon.com/Orbeon-Forms-Page-Not-Found-when-publishing-custom-xform-tp33667.html
Hi All
I'm an OPS newbie, so please bear with me.
Trying to get the separate deployment working. I have configured my web.xml, have OPS deployed and working, have created and successfully deployed an xforms xhtml in the OPS XForms sandbox. Now if I deploy this xform in my "separate" application (with cross context enabled) - I get a "Orbeon Forms - Page Not Found" message.
my URL:
http://localhost:8380/xforms-war-0.0.1/xforms-jsp/person.xhtmlmy web.xml:
[code]
<filter>
<filter-name>ops-xforms-filter</filter-name>
<filter-class>
org.orbeon.oxf.servlet.OPSXFormsFilter
</filter-class>
<init-param>
<param-name>oxf.xforms.renderer.context</param-name>
<param-value>/ops</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>ops-xforms-filter</filter-name>
<url-pattern>/xforms-jsp/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>ops-xforms-filter</filter-name>
<url-pattern>/ops/*</url-pattern>
</filter-mapping>
[/code]
my war layout:
/WEB-INF/**.**
/xforms-jsp/person.xhtml
It seems that my filters are correctly configured as /xforms-renderer is being hit and the OPS error page is being displayed. I am probably missing something trivial.
Please advise. Thanks in advance.