Hi list,
I am migrating an application from Orbeon 3.6 to Orbeon 3.7beta1. I have come upon a few problems, which I would like to debug using the instance inspector. However, the instance inspector does not work, at least not the way it used to work in 3.6. It tried out the following XForms code with both Orbeon versions: <html xmlns:xforms="http://www.w3.org/2002/xforms" xmlns="http://www.w3.org/1999/xhtml"> <head> <title>XForms Hello</title> <xforms:model> <xforms:instance> <message xmlns="">Hello World!</message> </xforms:instance> </xforms:model> </head> <body> <p> <xforms:output value="/message"/> </p> <widget:xforms-instance-inspector xmlns:widget="http://orbeon.org/oxf/xml/widget"/> </body> </html> With Orbeon 3.6, the instance inspector appears on the bottom of the page. With Orbeon 3.7beta1, nothing appears at all. Is the instance inspector invoked incorrectly in this example, or is this a bug? With kind regards, Pieter Deelen -- 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
|
Pieter,
I haven't checked 3.7beta1, but it works fine with nightly builds. -Erik On Dec 11, 2008, at 11:13 AM, Pieter Deelen wrote: > Hi list, > > I am migrating an application from Orbeon 3.6 to Orbeon 3.7beta1. I > have come upon a few problems, which I would like to debug using the > instance inspector. However, the instance inspector does not work, at > least not the way it used to work in 3.6. > > It tried out the following XForms code with both Orbeon versions: > > <html xmlns:xforms="http://www.w3.org/2002/xforms" > xmlns="http://www.w3.org/1999/xhtml"> > <head> > <title>XForms Hello</title> > <xforms:model> > <xforms:instance> > <message xmlns="">Hello World!</message> > </xforms:instance> > </xforms:model> > </head> > <body> > <p> > <xforms:output value="/message"/> > </p> > <widget:xforms-instance-inspector > xmlns:widget="http://orbeon.org/oxf/xml/widget"/> > </body> > </html> > > With Orbeon 3.6, the instance inspector appears on the bottom of the > page. With Orbeon 3.7beta1, nothing appears at all. > > Is the instance inspector invoked incorrectly in this example, or is > this a bug? > > With kind regards, > Pieter Deelen > > -- > 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 for the Enterprise Done the Right Way http://www.orbeon.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 |
Erik,
Thanks for the quick reply. I found the problem: our source tree contains a modified WEB-INF/resources/config/properties.xml file and our deployment process overwrites the default one. Problem was, this file was based on the default 3.6 one. Apparently, there have been many changes to this file between the two versions, so it is quite surprising things still worked more or less. With a modified version of the default 3.7 file, the instance inspector works perfectly. Regards, Pieter On Thu, Dec 11, 2008 at 12:32 PM, Erik Bruchez <[hidden email]> wrote: > Pieter, > > I haven't checked 3.7beta1, but it works fine with nightly builds. > > -Erik > > On Dec 11, 2008, at 11:13 AM, Pieter Deelen wrote: > >> Hi list, >> >> I am migrating an application from Orbeon 3.6 to Orbeon 3.7beta1. I >> have come upon a few problems, which I would like to debug using the >> instance inspector. However, the instance inspector does not work, at >> least not the way it used to work in 3.6. >> >> It tried out the following XForms code with both Orbeon versions: >> >> <html xmlns:xforms="http://www.w3.org/2002/xforms" >> xmlns="http://www.w3.org/1999/xhtml"> >> <head> >> <title>XForms Hello</title> >> <xforms:model> >> <xforms:instance> >> <message xmlns="">Hello World!</message> >> </xforms:instance> >> </xforms:model> >> </head> >> <body> >> <p> >> <xforms:output value="/message"/> >> </p> >> <widget:xforms-instance-inspector >> xmlns:widget="http://orbeon.org/oxf/xml/widget"/> >> </body> >> </html> >> >> With Orbeon 3.6, the instance inspector appears on the bottom of the >> page. With Orbeon 3.7beta1, nothing appears at all. >> >> Is the instance inspector invoked incorrectly in this example, or is this >> a bug? >> >> With kind regards, >> Pieter Deelen >> >> -- >> 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 for the Enterprise Done the Right Way > http://www.orbeon.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 > > -- 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
|
Pieter,
Related to this, I am sure you noticed that the properties.xml has been recently split in multiple files, and now you shouldn't have to modify any of the properties files that come by default with Orbeon Forms, but instead you can override properties as necessary in your own properties-local.xml. This should make upgrading to newer versions of Orbeon Forms easier for you. Alex On Dec 11, 2008, at 10:19 AM, "Pieter Deelen" <[hidden email]> wrote: > Erik, > > Thanks for the quick reply. I found the problem: our source tree > contains a modified WEB-INF/resources/config/properties.xml file and > our deployment process overwrites the default one. Problem was, this > file was based on the default 3.6 one. Apparently, there have been > many changes to this file between the two versions, so it is quite > surprising things still worked more or less. With a modified version > of the default 3.7 file, the instance inspector works perfectly. > > Regards, > Pieter > > On Thu, Dec 11, 2008 at 12:32 PM, Erik Bruchez <[hidden email]> > wrote: >> Pieter, >> >> I haven't checked 3.7beta1, but it works fine with nightly builds. >> >> -Erik >> >> On Dec 11, 2008, at 11:13 AM, Pieter Deelen wrote: >> >>> Hi list, >>> >>> I am migrating an application from Orbeon 3.6 to Orbeon 3.7beta1. I >>> have come upon a few problems, which I would like to debug using the >>> instance inspector. However, the instance inspector does not work, >>> at >>> least not the way it used to work in 3.6. >>> >>> It tried out the following XForms code with both Orbeon versions: >>> >>> <html xmlns:xforms="http://www.w3.org/2002/xforms" >>> xmlns="http://www.w3.org/1999/xhtml"> >>> <head> >>> <title>XForms Hello</title> >>> <xforms:model> >>> <xforms:instance> >>> <message xmlns="">Hello World!</message> >>> </xforms:instance> >>> </xforms:model> >>> </head> >>> <body> >>> <p> >>> <xforms:output value="/message"/> >>> </p> >>> <widget:xforms-instance-inspector >>> xmlns:widget="http://orbeon.org/oxf/xml/widget"/> >>> </body> >>> </html> >>> >>> With Orbeon 3.6, the instance inspector appears on the bottom of the >>> page. With Orbeon 3.7beta1, nothing appears at all. >>> >>> Is the instance inspector invoked incorrectly in this example, or >>> is this >>> a bug? >>> >>> With kind regards, >>> Pieter Deelen >>> >>> -- >>> 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 for the Enterprise Done the Right Way >> http://www.orbeon.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 >> >> > > -- > 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,
I had not yet noticed this split (has it been implemented in 3.7.0beta1?), but I am happy to hear about it. Thanks! Regards, Pieter On Wed, Dec 17, 2008 at 8:09 PM, Alessandro Vernet <[hidden email]> wrote: > Pieter, > > Related to this, I am sure you noticed that the properties.xml has been > recently split in multiple files, and now you shouldn't have to modify any > of the properties files that come by default with Orbeon Forms, but instead > you can override properties as necessary in your own properties-local.xml. > This should make upgrading to newer versions of Orbeon Forms easier for you. > > Alex > > On Dec 11, 2008, at 10:19 AM, "Pieter Deelen" <[hidden email]> > wrote: > >> Erik, >> >> Thanks for the quick reply. I found the problem: our source tree >> contains a modified WEB-INF/resources/config/properties.xml file and >> our deployment process overwrites the default one. Problem was, this >> file was based on the default 3.6 one. Apparently, there have been >> many changes to this file between the two versions, so it is quite >> surprising things still worked more or less. With a modified version >> of the default 3.7 file, the instance inspector works perfectly. >> >> Regards, >> Pieter >> >> On Thu, Dec 11, 2008 at 12:32 PM, Erik Bruchez <[hidden email]> >> wrote: >>> >>> Pieter, >>> >>> I haven't checked 3.7beta1, but it works fine with nightly builds. >>> >>> -Erik >>> >>> On Dec 11, 2008, at 11:13 AM, Pieter Deelen wrote: >>> >>>> Hi list, >>>> >>>> I am migrating an application from Orbeon 3.6 to Orbeon 3.7beta1. I >>>> have come upon a few problems, which I would like to debug using the >>>> instance inspector. However, the instance inspector does not work, at >>>> least not the way it used to work in 3.6. >>>> >>>> It tried out the following XForms code with both Orbeon versions: >>>> >>>> <html xmlns:xforms="http://www.w3.org/2002/xforms" >>>> xmlns="http://www.w3.org/1999/xhtml"> >>>> <head> >>>> <title>XForms Hello</title> >>>> <xforms:model> >>>> <xforms:instance> >>>> <message xmlns="">Hello World!</message> >>>> </xforms:instance> >>>> </xforms:model> >>>> </head> >>>> <body> >>>> <p> >>>> <xforms:output value="/message"/> >>>> </p> >>>> <widget:xforms-instance-inspector >>>> xmlns:widget="http://orbeon.org/oxf/xml/widget"/> >>>> </body> >>>> </html> >>>> >>>> With Orbeon 3.6, the instance inspector appears on the bottom of the >>>> page. With Orbeon 3.7beta1, nothing appears at all. >>>> >>>> Is the instance inspector invoked incorrectly in this example, or is >>>> this >>>> a bug? >>>> >>>> With kind regards, >>>> Pieter Deelen >>>> >>>> -- >>>> 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 for the Enterprise Done the Right Way >>> http://www.orbeon.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 >>> >>> >> >> -- >> 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 |
Free forum by Nabble | Edit this page |