Administrator
|
All,
Our latest blog entry: http://www.orbeon.com/blog/2008/08/27/a-round-of-xforms-engine-performance-improvements/ Enjoy, -Erik -- 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 |
Hi
When ever I try to submit a form Iam opening this page only http://localhost:8080/orbeon/xforms-renderer need help I gave the submission as <xforms:submission id="save-submission" ref="instance('books-instance')" action="/xforms-jsp/sample/demo.jsp" method="post" > <xforms:message ev:event="xforms-submit-error" level="modal">An error occurred while saving!</xforms:message> </xforms:submission> regards surendran -- 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 |
Surendran, Have you tried replace="instance" on your submission? You have no replace attribute, so I think the default is "all" which replaces the page with target url, or, if it is an xforms submission, than to a url on server that is the service endpoint for the xforms engine. --Hank On Aug 27, 2008, at 10:41 PM, Surendran M wrote: > Hi > > When ever I try to submit a form > > Iam opening this page only > > http://localhost:8080/orbeon/xforms-renderer > > need help > > I gave the submission as > > <xforms:submission id="save-submission" > ref="instance('books-instance')" action="/xforms-jsp/sample/demo.jsp" > method="post" > > <xforms:message ev:event="xforms-submit-error" > level="modal">An error occurred while saving!</xforms:message> > </xforms:submission> > > regards > surendran > > > -- > 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 NEES@UCSB Institute for Crustal Studies, University of California, Santa Barbara 805-893-8042 -- 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 |
Dear Hank Ratzesberger,
How to submit a form generated from form builder to a specific url, urgent help needed. Regards Surendran.M -----Original Message----- From: Hank Ratzesberger [mailto:[hidden email]] Sent: Thursday, August 28, 2008 9:10 PM To: [hidden email] Subject: [ops-users] Re: wrong submission page Surendran, Have you tried replace="instance" on your submission? You have no replace attribute, so I think the default is "all" which replaces the page with target url, or, if it is an xforms submission, than to a url on server that is the service endpoint for the xforms engine. --Hank On Aug 27, 2008, at 10:41 PM, Surendran M wrote: > Hi > > When ever I try to submit a form > > Iam opening this page only > > http://localhost:8080/orbeon/xforms-renderer > > need help > > I gave the submission as > > <xforms:submission id="save-submission" > ref="instance('books-instance')" action="/xforms-jsp/sample/demo.jsp" > method="post" > > <xforms:message ev:event="xforms-submit-error" > level="modal">An error occurred while saving!</xforms:message> > </xforms:submission> > > regards > surendran > > > -- > 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 NEES@UCSB Institute for Crustal Studies, University of California, Santa Barbara 805-893-8042 -- 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
|
In reply to this post by Surendran M-2
Surendran,
On Wed, Aug 27, 2008 at 10:41 PM, Surendran M <[hidden email]> wrote: > Iam opening this page only > http://localhost:8080/orbeon/xforms-renderer Looks like you are using Orbeon in separate deployment; is that right? Like Hank said, if you want to do a replace="instance" then you need to add this attribute on the submission. If you really intended to do a replace="all", then you might have hit a bug which was fixed very recently (may have been after beta 1). If you have this issue with beta 1, can you try to see if a nightly build fixes this? Alex -- Orbeon Forms - Web 2.0 Forms, open-source, for the Enterprise Orbeon's Blog: http://www.orbeon.com/blog/ Personal Blog: http://avernet.blogspot.com/ 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 |
Dear vernet,
I tried deploying the orbeon forms in jboss and merged it with some of my jar files so that the values submitted from the form has to pass to a jsp page then I have to put the submitted values through the hashmap to my application and then the application takes over(this is the scenario) and returns the value to the same jsp page Now trying to do the same with form builder but wanted to know if it is possible -----Original Message----- From: Alessandro Vernet [mailto:[hidden email]] Sent: Saturday, August 30, 2008 12:41 AM To: [hidden email] Subject: [ops-users] Re: wrong submission page Surendran, On Wed, Aug 27, 2008 at 10:41 PM, Surendran M <[hidden email]> wrote: > Iam opening this page only > http://localhost:8080/orbeon/xforms-renderer Looks like you are using Orbeon in separate deployment; is that right? Like Hank said, if you want to do a replace="instance" then you need to add this attribute on the submission. If you really intended to do a replace="all", then you might have hit a bug which was fixed very recently (may have been after beta 1). If you have this issue with beta 1, can you try to see if a nightly build fixes this? Alex -- Orbeon Forms - Web 2.0 Forms, open-source, for the Enterprise Orbeon's Blog: http://www.orbeon.com/blog/ Personal Blog: http://avernet.blogspot.com/ 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 |
Administrator
|
On Sat, Aug 30, 2008 at 12:07 AM, Surendran M
<[hidden email]> wrote: > I tried deploying the orbeon forms in jboss and merged it with some of my > jar files so that the values submitted from the form has to pass to a jsp > page then I have to put the submitted values through the hashmap to my > application and then the application takes over(this is the scenario) and > returns the value to the same jsp page > > Now trying to do the same with form builder but wanted to know if it is > possible One thing you can do which might address this is to implement your own persistence layer for Form Runner. You can find more about this here: http://wiki.orbeon.com/forms/developer-documentation/form-builder-integration-notes Alex -- Orbeon Forms - Web 2.0 Forms, open-source, for the Enterprise Orbeon's Blog: http://www.orbeon.com/blog/ Personal Blog: http://avernet.blogspot.com/ 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 |
Administrator
|
In reply to this post by Surendran M-2
On Fri, Aug 29, 2008 at 2:49 AM, Surendran M
<[hidden email]> wrote: > How to submit a form generated from form builder to a specific url, urgent > help needed. You will need to either change the generated XForms, or implement your own persistence layer. Alex -- Orbeon Forms - Web 2.0 Forms, open-source, for the Enterprise Orbeon's Blog: http://www.orbeon.com/blog/ Personal Blog: http://avernet.blogspot.com/ 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 |
Free forum by Nabble | Edit this page |