Message Hi MariaYou appear to have an identical setup and are experiencing an identical problem to what I have been attempting to resolve.The reason why you are just getting "a block of words" is because the OrbeonPortletXFormsFilter currently has a bug in it when used in conjunction with .jsp content like you described.Essentially the filter believes there is no content, so what you're seeing in Liferay is the actual XForms mark-up which the filter should have converted into pure HTML/JavaScript. (view the Liferay page source to see what I mean)I've been able to work around this by simply not using .JSPs. Instead I've written my portlet to read in a {someform}.xhtml file and write() this to the Portlet's RenderResponse like this:File includeFile = new File(getPortletContext().getRealPath("/html/orbeontestxformportlet/someform.xhtml"));
FileReader includeFileReader = new FileReader(includeFile);
PrintWriter respWriter = renderResponse.getWriter();int byteInt;
while((byteInt = includeFileReader.read()) != -1) {
respWriter.write(byteInt);
}
Hope this is a viable workaround for you too, until the underlying issue with Orbeon is fixed.This issue was recently documented in the Wiki @ http://wiki.orbeon.com/forms/doc/developer-guide/xforms-separate-deployment-with-portlets (See "Limitations" section)P.S. If you discover a way of using .JSP output then I'd be very interested in hearing how you did it as this is a long term requirement for me too.- Stian-----Original Message-----Thanks, Erik.
From: María Gil [[hidden email]]
Sent: 26 October 2010 15:34
To: [hidden email]
Subject: [ops-users] Re: Re: XForms in a portlet
I am using a nightly build (yesterday's, I think). I have deployed it in /jboss-home/server/default/deploy. I've tested Orbeon Form Builder, and it is working properly (I am able to create new forms, etc...)
On the other hand, I create a Liferay portlet (with Liferay SDK in Eclipse). I include orbeon-xforms-filter.jar in /lib. I edit portlet.xml, with this:
</portlet>
<!-- Define the Orbeon portlet XForms filter (for handling XForms within your own portlets) -->
<filter>
<filter-name>orbeon-forms-portlet-xforms-filter</filter-name>
<filter-class>org.orbeon.oxf.portlet.OrbeonPortletXFormsFilter</filter-class>
<lifecycle>RENDER_PHASE</lifecycle>
<lifecycle>ACTION_PHASE</lifecycle>
<lifecycle>RESOURCE_PHASE</lifecycle>
</filter>
<!-- Map the Orbeon portlet XForms filter -->
<filter-mapping>
<filter-name>orbeon-forms-portlet-xforms-filter</filter-name>
<portlet-name>hola</portlet-name>
</filter-mapping>
</portlet-app>
I also edit web.xml
<servlet>
<servlet-name>orbeon-trampoline-servlet</servlet-name>
<servlet-class>org.orbeon.oxf.portlet.OrbeonTrampolineServlet</servlet-class>
<init-param>
<param-name>oxf.xforms.renderer.context</param-name>
<param-value>/orbeon.war</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>orbeon-trampoline-servlet</servlet-name>
<url-pattern>/xforms-trampoline</url-pattern>
</servlet-mapping>
Do I need to change /xforms-trampoline/ ??
The third thing I need to do is enabling cross-context. I don't know if its here where I get the error. In Jboss, which is the best way to do so? I've added
<Context path="/orbeon.war" docBase="orbeon" crossContext="true"/>
<Context path="/liferay.war" docBase="liferay" crossContext="true"/>
in /jboss-home/server/default/deploy/jboss-web.deployer/server.xml
my-app is in this case /liferay.war?
I want to display my form in view.jsp, so here I have my xhtml code, and I would like to see the form in my portlet, but it seems difficult. The only thing I see now, is just a block of words.
Can anyone help? I would be delighted with a bit of help...
Thank you and sorry for all these questions...
Best Regards,
María
|
MARÍA GIL
R&D Engineer T: +34 94 641 60 66 M: +34 672 263 122 F: +34 94 431 82 86 [hidden email] www.andago.com |
ÁNDAGO INGENIERÍA
Álcalde Ángel Arroyo, 10, 1º 28904, Getafe, Madrid (Spain) ÁNDAGO LABS Bizkaia Technology Park Kanala Bidea, Edif-103, 1º izq. E-48170, Zamudio, Bizkaia (Spain) |
Ciudad del Saber Edificio 223, 3ºA. Ciudad de Panamá (Panamá) |
| |
Antes de imprimir este mensaje, asegúrese
de que es necesario. El medio ambiente está en nuestra
mano. Consider the environment before printing this mail. |
AVISO LEGAL
ANDAGO CONSULTING SL / ANDAGO INGENIERÍA, SL le informa que los datos facilitados por Ud. y utilizados para el envío de esta comunicación serán objeto de tratamiento automatizado o no en nuestros ficheros, con la finalidad de gestionar la agenda de contactos de nuestra empresa y para el envío de comunicaciones profesionales por cualquier medio electrónico o no. Vd. podrá en cualquier momento ejercer el derecho de acceso, rectificación, cancelación y oposición en los términos establecidos en la Ley Orgánica 15/1999. El responsable del tratamiento es ANDAGO CONSULTING SL / ANDAGO INGENIERIA SL, con domicilio en C/ ALCALDE ANGEL ARROYO, 10, 28904, Getafe (Madrid).
El contenido de esta comunicación, así como el de toda la documentación anexa, es confidencial y va dirigido únicamente al destinatario del mismo. En el supuesto de que usted no fuera el destinatario, le solicitamos que nos lo indique y no comunique su contenido a terceros, procediendo a su destrucción.
DISCLAIMER
The content of this communication and any attached information is confidential and exclusively for the use of the addressee. If you are not the addressee, we ask you to notify to the sender and do not pass its content to another person, and please be sure you destroy it.
| Free forum by Nabble | Edit this page |