I wanted to know how Orbeon Forms work in Liferay because the Web Forms portlet is very limited, so I visited Orbeon's website and read its documentation. Then I downloaded it and ran in a Tomcat server, I built a form with the Form Builder and then tried it with the Form Runner.

My question is, how can I export one of the forms I created with the Form Builder to include it in Liferay as a portlet for example? Is that possible? Can I export a form into a WAR for example and then deploy it into Liferay?

I know you can deploy Orbeon Forms into liferay but I only want to include a specific form, not all the application with the Form Builder, the examples etc.

Could anyone help me?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

First, a clarification: if what you mean is that you just want "the form", in the sense of just the XHTML, that can't work because any form built with Orbeon Forms needs a runtime to function. If the form is created with Form Builder, that means the Form Runner runtime. Either way you will need an Orbeon Forms portlet or servlet.

The forms you create, when published, are stored into a database. By default this is the built-in eXist XML database, but you can use Oracle, MySQL, or your custom persistence layer.

In order to see forms in Liferay, you have two possibilities:

I recommend you peruse these two pages for details.

How it works depends on which type of portlet you use.

If using the proxy portlet, then the portlet is very lightweight and just forwards requests to a separate webapp running the Form Runner runtime. You configure the portlet to point to a specific form.

If using the full portlet, then Form Runner runs directly as a portlet. Here the portlet will load a landing page, and you probably will want to modify that landing page to point to the forms you want your users to see.

In both cases, your published form will be found as long as Form Runner points to the right database.

In your case it seems like the proxy portlet might be your best option. Note that lots of bug fixes have taken place with the proxy portlet since 3.9, so I would recommend a nightly build. For reference here is the source of the proxy portlet.

link|improve this answer
I tried to use the Form Runner Liferay proxy portlet, but although when I configure it the form is shown, when I try to submit, it spends a lot of time but does not finish the submit. If I refresh the page, the portlet appears empty, and then all the proxy portlets have the same behaviour, so if I want orbeon forms to work I have to remove and reinstall it, so I couldn't submit any data. Do you know what's happening? Thanks – r.rodriguez Oct 24 '11 at 11:03
Did you use a recent nightly build to try this? Asking because we fixed a number of issues recently. – ebruchez Oct 24 '11 at 19:02
Also: with the proxy portlet, the Review button is not yet supported. The Save button should work though. – ebruchez Oct 24 '11 at 19:03
I was using a free trial version (orbeon-3.9.0.201105152053-PE), but my problems were with the save button, it spends a lot of time but did not finish the process. Do you recommend me another version? – r.rodriguez Oct 25 '11 at 6:49
Maybe it would be helpful, the Liferay version which I'm working with is 6.0.6 Community Edition – r.rodriguez Oct 25 '11 at 6:50
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.