Hi,
I have reported this error sometime in december and I am reporting it again because not only I am still seeing it BUT a search in the archives revealed that folks have/are experiencing this in some way or fashion recently. The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create my own war following instructions from documentation. 1. Remove log4j jar 2. add/edit jboss-web.xml in orbeon.war 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war WEB-INF/lib 4. Set logging to false in web.xml ( oxf.initialize-logging) 5 .Edit my new war's web.xml to look like what is shown further down below 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my war's xforms/ directory My war deploys just fine but when i try to hit http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error has occured" page followed by the unformatted content of the jsp. In other words, the jsp is not rendering properly. Please note that hitting that very jsp from within the orbeon.war works just fine. Another interesting tid bit, I can get the xform to render successfully when it is generated via a webwork/struts dispatcher result but like mentioned above NOT when accessed directly from the browser. Any ideas? - I will be happy to provide any documentation and try anything that can help zero in on the issue because I am getting stuck and crunch time is approaching. Thanks in advance. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dt d/web-app_2_2.dtd'> <web-app> <display-name>A simple 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> <filter-mapping> <filter-name>orbeon-xforms-filter</filter-name> <url-pattern>/xforms/*</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> </filter-mapping> <filter-mapping> <filter-name>orbeon-xforms-filter</filter-name> <url-pattern>/orbeon/*</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> </filter-mapping> </web-app> |
Administrator
|
Is this happening only with JBoss? I.e., can you reproduce this with
Tomcat? Otherwise it will be hard for us to help through the mailing list. Alex On Tue, Mar 2, 2010 at 8:55 PM, npujol73 <[hidden email]> wrote: > > Hi, > > I have reported this error sometime in december and I am reporting it again > because not only I am still seeing it BUT a search in the archives revealed > that folks have/are experiencing this in some way or fashion recently. > > The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create > my own war following instructions from documentation. > > 1. Remove log4j jar > 2. add/edit jboss-web.xml in orbeon.war > 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war > WEB-INF/lib > 4. Set logging to false in web.xml ( oxf.initialize-logging) > 5 .Edit my new war's web.xml to look like what is shown further down below > 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my > war's xforms/ directory > > My war deploys just fine but when i try to hit > http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error > has occured" page followed by the unformatted content of the jsp. In other > words, the jsp is not rendering properly. > > Please note that hitting that very jsp from within the orbeon.war works just > fine. Another interesting tid bit, I can get the xform to render > successfully when it is generated via a webwork/struts dispatcher result but > like mentioned above NOT when accessed directly from the browser. Any ideas? > - I will be happy to provide any documentation and try anything that can > help zero in on the issue because I am getting stuck and crunch time is > approaching. Thanks in advance. > > > <?xml version="1.0" encoding="UTF-8"?> > > <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application > 2.3//EN' 'http://java.sun.com/dt > d/web-app_2_2.dtd'> > > <web-app> > <display-name>A simple 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> > <filter-mapping> > <filter-name>orbeon-xforms-filter</filter-name> > <url-pattern>/xforms/*</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> > > > > > -- > View this message in context: http://n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p1576057.html > Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
Ok I will try it on a a standalone tomcat and report back
On Fri, Mar 5, 2010 at 6:35 PM, Alessandro Vernet <[hidden email]> wrote: > Is this happening only with JBoss? I.e., can you reproduce this with > Tomcat? Otherwise it will be hard for us to help through the mailing > list. > > Alex > > On Tue, Mar 2, 2010 at 8:55 PM, npujol73 <[hidden email]> wrote: >> >> Hi, >> >> I have reported this error sometime in december and I am reporting it again >> because not only I am still seeing it BUT a search in the archives revealed >> that folks have/are experiencing this in some way or fashion recently. >> >> The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create >> my own war following instructions from documentation. >> >> 1. Remove log4j jar >> 2. add/edit jboss-web.xml in orbeon.war >> 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war >> WEB-INF/lib >> 4. Set logging to false in web.xml ( oxf.initialize-logging) >> 5 .Edit my new war's web.xml to look like what is shown further down below >> 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my >> war's xforms/ directory >> >> My war deploys just fine but when i try to hit >> http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error >> has occured" page followed by the unformatted content of the jsp. In other >> words, the jsp is not rendering properly. >> >> Please note that hitting that very jsp from within the orbeon.war works just >> fine. Another interesting tid bit, I can get the xform to render >> successfully when it is generated via a webwork/struts dispatcher result but >> like mentioned above NOT when accessed directly from the browser. Any ideas? >> - I will be happy to provide any documentation and try anything that can >> help zero in on the issue because I am getting stuck and crunch time is >> approaching. Thanks in advance. >> >> >> <?xml version="1.0" encoding="UTF-8"?> >> >> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application >> 2.3//EN' 'http://java.sun.com/dt >> d/web-app_2_2.dtd'> >> >> <web-app> >> <display-name>A simple 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> >> <filter-mapping> >> <filter-name>orbeon-xforms-filter</filter-name> >> <url-pattern>/xforms/*</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> >> >> >> >> >> -- >> View this message in context: http://n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p1576057.html >> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. >> >> >> -- >> You receive this message as a subscriber of the [hidden email] mailing list. >> To unsubscribe: mailto:[hidden email] >> For general help: mailto:[hidden email]?subject=help >> OW2 mailing lists service home page: http://www.ow2.org/wws >> >> > > > > -- > Orbeon Forms - Web forms, open-source, for the Enterprise - > http://www.orbeon.com/ > My Twitter: http://twitter.com/avernet > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Alex,
It is confirmed the attached war works fine on apache tomcat apache-tomcat-5.5.28 but not on jboss-4.0.2 (with embedded tomcat 5-5). So this is another data point in addition to what I had mentioned earlier about an october 22, 2009 build for whom it worked. How else can I help ? Thanks Nicolas On Fri, Mar 5, 2010 at 7:29 PM, Nicolas Pujol <[hidden email]> wrote: > Ok I will try it on a a standalone tomcat and report back > > On Fri, Mar 5, 2010 at 6:35 PM, Alessandro Vernet <[hidden email]> wrote: >> Is this happening only with JBoss? I.e., can you reproduce this with >> Tomcat? Otherwise it will be hard for us to help through the mailing >> list. >> >> Alex >> >> On Tue, Mar 2, 2010 at 8:55 PM, npujol73 <[hidden email]> wrote: >>> >>> Hi, >>> >>> I have reported this error sometime in december and I am reporting it again >>> because not only I am still seeing it BUT a search in the archives revealed >>> that folks have/are experiencing this in some way or fashion recently. >>> >>> The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create >>> my own war following instructions from documentation. >>> >>> 1. Remove log4j jar >>> 2. add/edit jboss-web.xml in orbeon.war >>> 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war >>> WEB-INF/lib >>> 4. Set logging to false in web.xml ( oxf.initialize-logging) >>> 5 .Edit my new war's web.xml to look like what is shown further down below >>> 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my >>> war's xforms/ directory >>> >>> My war deploys just fine but when i try to hit >>> http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error >>> has occured" page followed by the unformatted content of the jsp. In other >>> words, the jsp is not rendering properly. >>> >>> Please note that hitting that very jsp from within the orbeon.war works just >>> fine. Another interesting tid bit, I can get the xform to render >>> successfully when it is generated via a webwork/struts dispatcher result but >>> like mentioned above NOT when accessed directly from the browser. Any ideas? >>> - I will be happy to provide any documentation and try anything that can >>> help zero in on the issue because I am getting stuck and crunch time is >>> approaching. Thanks in advance. >>> >>> >>> <?xml version="1.0" encoding="UTF-8"?> >>> >>> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application >>> 2.3//EN' 'http://java.sun.com/dt >>> d/web-app_2_2.dtd'> >>> >>> <web-app> >>> <display-name>A simple 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> >>> <filter-mapping> >>> <filter-name>orbeon-xforms-filter</filter-name> >>> <url-pattern>/xforms/*</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> >>> >>> >>> >>> >>> -- >>> View this message in context: http://n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p1576057.html >>> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. >>> >>> >>> -- >>> You receive this message as a subscriber of the [hidden email] mailing list. >>> To unsubscribe: mailto:[hidden email] >>> For general help: mailto:[hidden email]?subject=help >>> OW2 mailing lists service home page: http://www.ow2.org/wws >>> >>> >> >> >> >> -- >> Orbeon Forms - Web forms, open-source, for the Enterprise - >> http://www.orbeon.com/ >> My Twitter: http://twitter.com/avernet >> >> >> -- >> You receive this message as a subscriber of the [hidden email] mailing list. >> To unsubscribe: mailto:[hidden email] >> For general help: mailto:[hidden email]?subject=help >> OW2 mailing lists service home page: http://www.ow2.org/wws >> >> > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws test.war (12K) Download Attachment |
Administrator
|
Nicolas,
I am really sorry, but I am afraid we won't be able to help here if this is an application server specific issue. In general, because issues happening only in a portal environment are more time-consuming for us to resolve, we only have the bandwidth to handle those for our clients who have a Development Support plan (http://www.orbeon.com/support-services/development). Alex On Fri, Mar 5, 2010 at 8:25 PM, Nicolas Pujol <[hidden email]> wrote: > Alex, > > It is confirmed the attached war works fine on apache tomcat > apache-tomcat-5.5.28 but not on jboss-4.0.2 (with embedded tomcat > 5-5). > > So this is another data point in addition to what I had mentioned > earlier about an october 22, 2009 build for whom it worked. How else > can I help ? > > > Thanks > > Nicolas > > On Fri, Mar 5, 2010 at 7:29 PM, Nicolas Pujol <[hidden email]> wrote: >> Ok I will try it on a a standalone tomcat and report back >> >> On Fri, Mar 5, 2010 at 6:35 PM, Alessandro Vernet <[hidden email]> wrote: >>> Is this happening only with JBoss? I.e., can you reproduce this with >>> Tomcat? Otherwise it will be hard for us to help through the mailing >>> list. >>> >>> Alex >>> >>> On Tue, Mar 2, 2010 at 8:55 PM, npujol73 <[hidden email]> wrote: >>>> >>>> Hi, >>>> >>>> I have reported this error sometime in december and I am reporting it again >>>> because not only I am still seeing it BUT a search in the archives revealed >>>> that folks have/are experiencing this in some way or fashion recently. >>>> >>>> The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create >>>> my own war following instructions from documentation. >>>> >>>> 1. Remove log4j jar >>>> 2. add/edit jboss-web.xml in orbeon.war >>>> 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war >>>> WEB-INF/lib >>>> 4. Set logging to false in web.xml ( oxf.initialize-logging) >>>> 5 .Edit my new war's web.xml to look like what is shown further down below >>>> 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my >>>> war's xforms/ directory >>>> >>>> My war deploys just fine but when i try to hit >>>> http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error >>>> has occured" page followed by the unformatted content of the jsp. In other >>>> words, the jsp is not rendering properly. >>>> >>>> Please note that hitting that very jsp from within the orbeon.war works just >>>> fine. Another interesting tid bit, I can get the xform to render >>>> successfully when it is generated via a webwork/struts dispatcher result but >>>> like mentioned above NOT when accessed directly from the browser. Any ideas? >>>> - I will be happy to provide any documentation and try anything that can >>>> help zero in on the issue because I am getting stuck and crunch time is >>>> approaching. Thanks in advance. >>>> >>>> >>>> <?xml version="1.0" encoding="UTF-8"?> >>>> >>>> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application >>>> 2.3//EN' 'http://java.sun.com/dt >>>> d/web-app_2_2.dtd'> >>>> >>>> <web-app> >>>> <display-name>A simple 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> >>>> <filter-mapping> >>>> <filter-name>orbeon-xforms-filter</filter-name> >>>> <url-pattern>/xforms/*</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> >>>> >>>> >>>> >>>> >>>> -- >>>> View this message in context: http://n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p1576057.html >>>> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. >>>> >>>> >>>> -- >>>> You receive this message as a subscriber of the [hidden email] mailing list. >>>> To unsubscribe: mailto:[hidden email] >>>> For general help: mailto:[hidden email]?subject=help >>>> OW2 mailing lists service home page: http://www.ow2.org/wws >>>> >>>> >>> >>> >>> >>> -- >>> Orbeon Forms - Web forms, open-source, for the Enterprise - >>> http://www.orbeon.com/ >>> My Twitter: http://twitter.com/avernet >>> >>> >>> -- >>> You receive this message as a subscriber of the [hidden email] mailing list. >>> To unsubscribe: mailto:[hidden email] >>> For general help: mailto:[hidden email]?subject=help >>> OW2 mailing lists service home page: http://www.ow2.org/wws >>> >>> >> > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
I understand.
I would like to zero in on what build this started happening on. Is there a way where I can go download the orbeon war for last 5 months or so ? Can you also may be point me to some classes/code....who knows I may be able to fix it to the benefit of the Jboss community out there. I am going to try it on jboss 4.2 and jboss 5. If it were not to work for those, it may convince you to take a peek....... Thanks Alex On Sun, Mar 7, 2010 at 2:33 AM, Alessandro Vernet <[hidden email]> wrote: > Nicolas, > > I am really sorry, but I am afraid we won't be able to help here if > this is an application server specific issue. In general, because > issues happening only in a portal environment are more time-consuming > for us to resolve, we only have the bandwidth to handle those for our > clients who have a Development Support plan > (http://www.orbeon.com/support-services/development). > > Alex > > On Fri, Mar 5, 2010 at 8:25 PM, Nicolas Pujol <[hidden email]> wrote: >> Alex, >> >> It is confirmed the attached war works fine on apache tomcat >> apache-tomcat-5.5.28 but not on jboss-4.0.2 (with embedded tomcat >> 5-5). >> >> So this is another data point in addition to what I had mentioned >> earlier about an october 22, 2009 build for whom it worked. How else >> can I help ? >> >> >> Thanks >> >> Nicolas >> >> On Fri, Mar 5, 2010 at 7:29 PM, Nicolas Pujol <[hidden email]> wrote: >>> Ok I will try it on a a standalone tomcat and report back >>> >>> On Fri, Mar 5, 2010 at 6:35 PM, Alessandro Vernet <[hidden email]> wrote: >>>> Is this happening only with JBoss? I.e., can you reproduce this with >>>> Tomcat? Otherwise it will be hard for us to help through the mailing >>>> list. >>>> >>>> Alex >>>> >>>> On Tue, Mar 2, 2010 at 8:55 PM, npujol73 <[hidden email]> wrote: >>>>> >>>>> Hi, >>>>> >>>>> I have reported this error sometime in december and I am reporting it again >>>>> because not only I am still seeing it BUT a search in the archives revealed >>>>> that folks have/are experiencing this in some way or fashion recently. >>>>> >>>>> The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create >>>>> my own war following instructions from documentation. >>>>> >>>>> 1. Remove log4j jar >>>>> 2. add/edit jboss-web.xml in orbeon.war >>>>> 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war >>>>> WEB-INF/lib >>>>> 4. Set logging to false in web.xml ( oxf.initialize-logging) >>>>> 5 .Edit my new war's web.xml to look like what is shown further down below >>>>> 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my >>>>> war's xforms/ directory >>>>> >>>>> My war deploys just fine but when i try to hit >>>>> http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error >>>>> has occured" page followed by the unformatted content of the jsp. In other >>>>> words, the jsp is not rendering properly. >>>>> >>>>> Please note that hitting that very jsp from within the orbeon.war works just >>>>> fine. Another interesting tid bit, I can get the xform to render >>>>> successfully when it is generated via a webwork/struts dispatcher result but >>>>> like mentioned above NOT when accessed directly from the browser. Any ideas? >>>>> - I will be happy to provide any documentation and try anything that can >>>>> help zero in on the issue because I am getting stuck and crunch time is >>>>> approaching. Thanks in advance. >>>>> >>>>> >>>>> <?xml version="1.0" encoding="UTF-8"?> >>>>> >>>>> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application >>>>> 2.3//EN' 'http://java.sun.com/dt >>>>> d/web-app_2_2.dtd'> >>>>> >>>>> <web-app> >>>>> <display-name>A simple 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> >>>>> <filter-mapping> >>>>> <filter-name>orbeon-xforms-filter</filter-name> >>>>> <url-pattern>/xforms/*</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> >>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> View this message in context: http://n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p1576057.html >>>>> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. >>>>> >>>>> >>>>> -- >>>>> You receive this message as a subscriber of the [hidden email] mailing list. >>>>> To unsubscribe: mailto:[hidden email] >>>>> For general help: mailto:[hidden email]?subject=help >>>>> OW2 mailing lists service home page: http://www.ow2.org/wws >>>>> >>>>> >>>> >>>> >>>> >>>> -- >>>> Orbeon Forms - Web forms, open-source, for the Enterprise - >>>> http://www.orbeon.com/ >>>> My Twitter: http://twitter.com/avernet >>>> >>>> >>>> -- >>>> You receive this message as a subscriber of the [hidden email] mailing list. >>>> To unsubscribe: mailto:[hidden email] >>>> For general help: mailto:[hidden email]?subject=help >>>> OW2 mailing lists service home page: http://www.ow2.org/wws >>>> >>>> >>> >> >> >> -- >> You receive this message as a subscriber of the [hidden email] mailing list. >> To unsubscribe: mailto:[hidden email] >> For general help: mailto:[hidden email]?subject=help >> OW2 mailing lists service home page: http://www.ow2.org/wws >> >> > > > > -- > Orbeon Forms - Web forms, open-source, for the Enterprise - > http://www.orbeon.com/ > My Twitter: http://twitter.com/avernet > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Builds are not kept, but you can get the source at different point in
times from Git and recreate those builds. Alex On Sun, Mar 7, 2010 at 9:08 AM, Nicolas Pujol <[hidden email]> wrote: > I understand. > > I would like to zero in on what build this started happening on. Is > there a way where I can go download the orbeon war for last 5 months > or so ? Can you also may be point me to some classes/code....who knows > I may be able to fix it to the benefit of the Jboss community out > there. > > I am going to try it on jboss 4.2 and jboss 5. If it were not to work > for those, it may convince you to take a peek....... > > > Thanks Alex > > On Sun, Mar 7, 2010 at 2:33 AM, Alessandro Vernet <[hidden email]> wrote: >> Nicolas, >> >> I am really sorry, but I am afraid we won't be able to help here if >> this is an application server specific issue. In general, because >> issues happening only in a portal environment are more time-consuming >> for us to resolve, we only have the bandwidth to handle those for our >> clients who have a Development Support plan >> (http://www.orbeon.com/support-services/development). >> >> Alex >> >> On Fri, Mar 5, 2010 at 8:25 PM, Nicolas Pujol <[hidden email]> wrote: >>> Alex, >>> >>> It is confirmed the attached war works fine on apache tomcat >>> apache-tomcat-5.5.28 but not on jboss-4.0.2 (with embedded tomcat >>> 5-5). >>> >>> So this is another data point in addition to what I had mentioned >>> earlier about an october 22, 2009 build for whom it worked. How else >>> can I help ? >>> >>> >>> Thanks >>> >>> Nicolas >>> >>> On Fri, Mar 5, 2010 at 7:29 PM, Nicolas Pujol <[hidden email]> wrote: >>>> Ok I will try it on a a standalone tomcat and report back >>>> >>>> On Fri, Mar 5, 2010 at 6:35 PM, Alessandro Vernet <[hidden email]> wrote: >>>>> Is this happening only with JBoss? I.e., can you reproduce this with >>>>> Tomcat? Otherwise it will be hard for us to help through the mailing >>>>> list. >>>>> >>>>> Alex >>>>> >>>>> On Tue, Mar 2, 2010 at 8:55 PM, npujol73 <[hidden email]> wrote: >>>>>> >>>>>> Hi, >>>>>> >>>>>> I have reported this error sometime in december and I am reporting it again >>>>>> because not only I am still seeing it BUT a search in the archives revealed >>>>>> that folks have/are experiencing this in some way or fashion recently. >>>>>> >>>>>> The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create >>>>>> my own war following instructions from documentation. >>>>>> >>>>>> 1. Remove log4j jar >>>>>> 2. add/edit jboss-web.xml in orbeon.war >>>>>> 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war >>>>>> WEB-INF/lib >>>>>> 4. Set logging to false in web.xml ( oxf.initialize-logging) >>>>>> 5 .Edit my new war's web.xml to look like what is shown further down below >>>>>> 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my >>>>>> war's xforms/ directory >>>>>> >>>>>> My war deploys just fine but when i try to hit >>>>>> http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error >>>>>> has occured" page followed by the unformatted content of the jsp. In other >>>>>> words, the jsp is not rendering properly. >>>>>> >>>>>> Please note that hitting that very jsp from within the orbeon.war works just >>>>>> fine. Another interesting tid bit, I can get the xform to render >>>>>> successfully when it is generated via a webwork/struts dispatcher result but >>>>>> like mentioned above NOT when accessed directly from the browser. Any ideas? >>>>>> - I will be happy to provide any documentation and try anything that can >>>>>> help zero in on the issue because I am getting stuck and crunch time is >>>>>> approaching. Thanks in advance. >>>>>> >>>>>> >>>>>> <?xml version="1.0" encoding="UTF-8"?> >>>>>> >>>>>> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application >>>>>> 2.3//EN' 'http://java.sun.com/dt >>>>>> d/web-app_2_2.dtd'> >>>>>> >>>>>> <web-app> >>>>>> <display-name>A simple 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> >>>>>> <filter-mapping> >>>>>> <filter-name>orbeon-xforms-filter</filter-name> >>>>>> <url-pattern>/xforms/*</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> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> View this message in context: http://n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p1576057.html >>>>>> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. >>>>>> >>>>>> >>>>>> -- >>>>>> You receive this message as a subscriber of the [hidden email] mailing list. >>>>>> To unsubscribe: mailto:[hidden email] >>>>>> For general help: mailto:[hidden email]?subject=help >>>>>> OW2 mailing lists service home page: http://www.ow2.org/wws >>>>>> >>>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> Orbeon Forms - Web forms, open-source, for the Enterprise - >>>>> http://www.orbeon.com/ >>>>> My Twitter: http://twitter.com/avernet >>>>> >>>>> >>>>> -- >>>>> You receive this message as a subscriber of the [hidden email] mailing list. >>>>> To unsubscribe: mailto:[hidden email] >>>>> For general help: mailto:[hidden email]?subject=help >>>>> OW2 mailing lists service home page: http://www.ow2.org/wws >>>>> >>>>> >>>> >>> >>> >>> -- >>> You receive this message as a subscriber of the [hidden email] mailing list. >>> To unsubscribe: mailto:[hidden email] >>> For general help: mailto:[hidden email]?subject=help >>> OW2 mailing lists service home page: http://www.ow2.org/wws >>> >>> >> >> >> >> -- >> Orbeon Forms - Web forms, open-source, for the Enterprise - >> http://www.orbeon.com/ >> My Twitter: http://twitter.com/avernet >> >> >> -- >> You receive this message as a subscriber of the [hidden email] mailing list. >> To unsubscribe: mailto:[hidden email] >> For general help: mailto:[hidden email]?subject=help >> OW2 mailing lists service home page: http://www.ow2.org/wws >> >> > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
Administrator
|
In reply to this post by npujol73
Nicolas,
Just to clarify, this has nothing to do with portlets, right? It's just separate deployment with JBoss? Also, when this happens, do you get an exception in the logs? -Erik On Sun, Mar 7, 2010 at 9:08 AM, Nicolas Pujol <[hidden email]> wrote: > I understand. > > I would like to zero in on what build this started happening on. Is > there a way where I can go download the orbeon war for last 5 months > or so ? Can you also may be point me to some classes/code....who knows > I may be able to fix it to the benefit of the Jboss community out > there. > > I am going to try it on jboss 4.2 and jboss 5. If it were not to work > for those, it may convince you to take a peek....... > > > Thanks Alex > > On Sun, Mar 7, 2010 at 2:33 AM, Alessandro Vernet <[hidden email]> wrote: >> Nicolas, >> >> I am really sorry, but I am afraid we won't be able to help here if >> this is an application server specific issue. In general, because >> issues happening only in a portal environment are more time-consuming >> for us to resolve, we only have the bandwidth to handle those for our >> clients who have a Development Support plan >> (http://www.orbeon.com/support-services/development). >> >> Alex >> >> On Fri, Mar 5, 2010 at 8:25 PM, Nicolas Pujol <[hidden email]> wrote: >>> Alex, >>> >>> It is confirmed the attached war works fine on apache tomcat >>> apache-tomcat-5.5.28 but not on jboss-4.0.2 (with embedded tomcat >>> 5-5). >>> >>> So this is another data point in addition to what I had mentioned >>> earlier about an october 22, 2009 build for whom it worked. How else >>> can I help ? >>> >>> >>> Thanks >>> >>> Nicolas >>> >>> On Fri, Mar 5, 2010 at 7:29 PM, Nicolas Pujol <[hidden email]> wrote: >>>> Ok I will try it on a a standalone tomcat and report back >>>> >>>> On Fri, Mar 5, 2010 at 6:35 PM, Alessandro Vernet <[hidden email]> wrote: >>>>> Is this happening only with JBoss? I.e., can you reproduce this with >>>>> Tomcat? Otherwise it will be hard for us to help through the mailing >>>>> list. >>>>> >>>>> Alex >>>>> >>>>> On Tue, Mar 2, 2010 at 8:55 PM, npujol73 <[hidden email]> wrote: >>>>>> >>>>>> Hi, >>>>>> >>>>>> I have reported this error sometime in december and I am reporting it again >>>>>> because not only I am still seeing it BUT a search in the archives revealed >>>>>> that folks have/are experiencing this in some way or fashion recently. >>>>>> >>>>>> The setup: Jboss 4.0.2 with webwork2.2.7 in a separate deployment. I create >>>>>> my own war following instructions from documentation. >>>>>> >>>>>> 1. Remove log4j jar >>>>>> 2. add/edit jboss-web.xml in orbeon.war >>>>>> 3. copy orbeon.war/WEB-INF/lib/orbeon-xforms-filter.jar to my new war >>>>>> WEB-INF/lib >>>>>> 4. Set logging to false in web.xml ( oxf.initialize-logging) >>>>>> 5 .Edit my new war's web.xml to look like what is shown further down below >>>>>> 6. Copy the orbeon.war/WEB-INF/xforms-jsp/guess-the-number/index.jsp to my >>>>>> war's xforms/ directory >>>>>> >>>>>> My war deploys just fine but when i try to hit >>>>>> http://localhost/mywar-ctx/xforms/index.jsp I get the "Loading....An error >>>>>> has occured" page followed by the unformatted content of the jsp. In other >>>>>> words, the jsp is not rendering properly. >>>>>> >>>>>> Please note that hitting that very jsp from within the orbeon.war works just >>>>>> fine. Another interesting tid bit, I can get the xform to render >>>>>> successfully when it is generated via a webwork/struts dispatcher result but >>>>>> like mentioned above NOT when accessed directly from the browser. Any ideas? >>>>>> - I will be happy to provide any documentation and try anything that can >>>>>> help zero in on the issue because I am getting stuck and crunch time is >>>>>> approaching. Thanks in advance. >>>>>> >>>>>> >>>>>> <?xml version="1.0" encoding="UTF-8"?> >>>>>> >>>>>> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application >>>>>> 2.3//EN' 'http://java.sun.com/dt >>>>>> d/web-app_2_2.dtd'> >>>>>> >>>>>> <web-app> >>>>>> <display-name>A simple 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> >>>>>> <filter-mapping> >>>>>> <filter-name>orbeon-xforms-filter</filter-name> >>>>>> <url-pattern>/xforms/*</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> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> View this message in context: http://n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p1576057.html >>>>>> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. >>>>>> >>>>>> >>>>>> -- >>>>>> You receive this message as a subscriber of the [hidden email] mailing list. >>>>>> To unsubscribe: mailto:[hidden email] >>>>>> For general help: mailto:[hidden email]?subject=help >>>>>> OW2 mailing lists service home page: http://www.ow2.org/wws >>>>>> >>>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> Orbeon Forms - Web forms, open-source, for the Enterprise - >>>>> http://www.orbeon.com/ >>>>> My Twitter: http://twitter.com/avernet >>>>> >>>>> >>>>> -- >>>>> You receive this message as a subscriber of the [hidden email] mailing list. >>>>> To unsubscribe: mailto:[hidden email] >>>>> For general help: mailto:[hidden email]?subject=help >>>>> OW2 mailing lists service home page: http://www.ow2.org/wws >>>>> >>>>> >>>> >>> >>> >>> -- >>> You receive this message as a subscriber of the [hidden email] mailing list. >>> To unsubscribe: mailto:[hidden email] >>> For general help: mailto:[hidden email]?subject=help >>> OW2 mailing lists service home page: http://www.ow2.org/wws >>> >>> >> >> >> >> -- >> Orbeon Forms - Web forms, open-source, for the Enterprise - >> http://www.orbeon.com/ >> My Twitter: http://twitter.com/avernet >> >> >> -- >> You receive this message as a subscriber of the [hidden email] mailing list. >> To unsubscribe: mailto:[hidden email] >> For general help: mailto:[hidden email]?subject=help >> OW2 mailing lists service home page: http://www.ow2.org/wws >> >> > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Yes this has nothing to do with portlets. I confirm that there are no errors in the logs.
|
Hi,
I wanted to point out this is still an issue. Since it has been a while, I want to summarize the issue while providing an additional data point. ISSUE The issue basically is that the Orbeon Filter in separate deployment does not work on JBoss and the user is presented with a blank/unstyled/semi-processed representation of the xform with a message at the top that says "Loading....An error has ocurred" IMPORTANT INFO/SYMPTOMS 1. The orbeon engine does get solicited (e.g the request is being forwarded to the engine as per the logs) 2. The filter works fine if the request is FORWARDED (via the <dispatcher> element in web.xml and programmatically via dispatcher.forward) but NOT if just intercepted with the filter as is most commonly done. NEW . 3. The filter works fine on a plain Tomcat install. The new data point is point 2 above. Can you guys think of reason why the orbeon filter would FORWARD a request just fine but not intercepted ok ? Let me know if any comes to mind. I have been able to work around the problem but it would definitely help with adoption in my organization if I could just easily process xforms directly. Thanks |
Administrator
|
Nicolas,
You are saying that it works if you have <dispatcher>FORWARD</dispatcher>, but doesn't if you have what inside the <dispatcher>? Alex On Mon, Jul 5, 2010 at 8:27 AM, npujol73 <[hidden email]> wrote: > > Hi, > > I wanted to point out this is still an issue. Since it has been a while, I > want to summarize the issue while providing an additional data point. > > ISSUE > > The issue basically is that the Orbeon Filter in separate deployment does > not work on JBoss and the user is presented with a > blank/unstyled/semi-processed representation of the xform with a message at > the top that says "Loading....An error has ocurred" > > IMPORTANT INFO/SYMPTOMS > > 1. The orbeon engine does get solicited (e.g the request is being forwarded > to the engine as per the logs) > 2. The filter works fine if the request is FORWARDED (via the <dispatcher> > element in web.xml and programmatically via dispatcher.forward) but NOT if > just intercepted with the filter as is most commonly done. NEW . > 3. The filter works fine on a plain Tomcat install. > > The new data point is point 2 above. Can you guys think of reason why the > orbeon filter would FORWARD a request just fine but not intercepted ok ? > Let me know if any comes to mind. I have been able to work around the > problem but it would definitely help with adoption in my organization if I > could just easily process xforms directly. > > Thanks > > > -- > View this message in context: http://orbeon-forms-ops-users.24843.n4.nabble.com/Loading-An-error-has-occured-in-a-separate-deployment-on-jboss-tp1576057p2278506.html > Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com. > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
I am out of the office until 26th July *********************************************************************************************** This email, including any attachment, is confidential and may be legally privileged. If you are not the intended recipient or if you have received this email in error, please inform the sender immediately by reply and delete all copies from your system. Do not retain, copy, disclose, distribute or otherwise use any of its contents.
Whilst we have taken reasonable precautions to ensure that this email has been swept for computer viruses, we cannot guarantee that this email does not contain such material and we therefore advise you to carry out your own virus checks. We do not accept liability for any damage or losses sustained as a result of such material.
Please note that incoming and outgoing email communications passing through our IT systems may be monitored and/or intercepted by us solely to determine whether the content is business related and compliant with company standards. *********************************************************************************************** The Stationery Office Limited is registered in England No. 3049649 at 10 Eastbourne Terrace, London, W2 6LG
|
Free forum by Nabble | Edit this page |