Hi there,
I've been finding that every second request to a hello world xhtml file is blank from our java module -- as the simplest test case, even though it returns a 200 OK. Similarly every second request produces no logging in the orbeon.log file. There's literally no xforms functionality in it, but we have the following web.xml config… …. <filter-mapping> <filter-name>superip-auth-filter</filter-name> <url-pattern>/orbeon/xforms-server</url-pattern> </filter-mapping> <!-- Map any application xforms through to the XForms engine --> <filter-mapping> <filter-name>orbeon-xforms-filter</filter-name> <url-pattern>*.xhtml</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> </filter-mapping> <!-- This is necessary so that XForms engine resources can be served appropriately --> <filter-mapping> <filter-name>orbeon-xforms-filter</filter-name> <url-pattern>/orbeon/*</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> </filter-mapping> </web-app> So I'm wondering if there's some known bug that we're hitting in 4.3 in terms of the support for separate deployments? Otherwise, how might I debug this further? thanks, Lachlan -- You received this message because you are subscribed to the Google Groups "Orbeon Forms" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. |
Hi again,
I've cloned and adjusted for orbeon 4.3.0.1 a minimal hello world app to demonstrate the problem here: https://github.com/DiUS/orbeon-hello-world Steps to reproduce: 1) drop in the current orbeon release war into tomcat 6 or 7's web apps dir $ cp orbeon-4.3.0.1.201308150213-CE.war $CATALINA_HOME/webapps/orbeon.war 2) deploy the above hello world app: $ cd orbeon-hello-world $ mvn clean package $ cp target/orbeon-play.war $CATALINA_HOME/webapps/ 3) hit the test page: http://localhost:9090/orbeon-play/test/test.html I find every second request returns nothing. Is there some configuration I'm missing ? Thanks! On 26/08/2013, at 3:05 PM, Lachlan Deck <[hidden email]> wrote: > Hi there, > > I've been finding that every second request to a hello world xhtml file is blank from our java module -- as the simplest test case, even though it returns a 200 OK. > Similarly every second request produces no logging in the orbeon.log file. > > There's literally no xforms functionality in it, but we have the following web.xml config… > …. > <filter-mapping> > <filter-name>superip-auth-filter</filter-name> > <url-pattern>/orbeon/xforms-server</url-pattern> > </filter-mapping> > <!-- Map any application xforms through to the XForms engine --> > <filter-mapping> > <filter-name>orbeon-xforms-filter</filter-name> > <url-pattern>*.xhtml</url-pattern> > <dispatcher>REQUEST</dispatcher> > <dispatcher>FORWARD</dispatcher> > </filter-mapping> > <!-- This is necessary so that XForms engine resources can be served appropriately --> > <filter-mapping> > <filter-name>orbeon-xforms-filter</filter-name> > <url-pattern>/orbeon/*</url-pattern> > <dispatcher>REQUEST</dispatcher> > <dispatcher>FORWARD</dispatcher> > </filter-mapping> > </web-app> > > So I'm wondering if there's some known bug that we're hitting in 4.3 in terms of the support for separate deployments? > > Otherwise, how might I debug this further? > > thanks, > Lachlan > > -- You received this message because you are subscribed to the Google Groups "Orbeon Forms" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. |
Free forum by Nabble | Edit this page |