application flow

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

application flow

smaran

Hi All,

I working on orbeon forms.I am unable to get the flow.In the pfc

<page path-info="/fr/([^/]+)/([^/]+)/(new|edit|view)(/([^/]+))?" matcher="oxf:perl5-matcher"

          model="detail/detail-model.xpl" view="html-view.xpl">

    </page>

 

I can understand if regular expression matches then it had to go to detail-model.xpl and html-view.xpl

 

But unable to understand from here how its links to crud.xpl i.e persistence layers.

    <page path-info="/fr/service/oracle/crud/([^/]+/[^/]+/(form/[^/]+|data/[^/]+/[^/]+))" matcher="oxf:perl5-matcher"

          model="persistence/oracle/crud.xpl"/>

 

can anyone let me this to know.

 

 

Also what does this mean

<p:param type="input" name="instance"/>

Regards,

Smaran

 

 

Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.

www.wipro.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
Reply | Threaded
Open this post in threaded view
|

Re: application flow

Erik Bruchez
Administrator
Smaran,

This page flow entry is used to load the Form Runner new/edit/view pages.

The page is built of a page model and view assembled into a processing pipeline of XML data (with XPL being the XML Pipeline Language).

Two things happen related to the persistence layer:

1. The form definition is fetched through the persistence layer from XPL. See:


This is done with oxf:url-generator processor, which is configured with the properties that configure the URL of the persistence layer to use given the app/form name provided in the page URL.

2. When the form definition is loaded from the persistence layer, it is assembled (further down the XPL pipeline) into a complete XForms page, which runs through the XForms engine. One component of that XForms page is persistence-model.xml, which contains xforms:submission's able to do further calls to the persistence layer API, to read, write and update form data. See:


I hope this helps,

-Erik

On Sun, Mar 6, 2011 at 11:20 PM, <[hidden email]> wrote:

Hi All,

I working on orbeon forms.I am unable to get the flow.In the pfc

<page path-info="/fr/([^/]+)/([^/]+)/(new|edit|view)(/([^/]+))?" matcher="oxf:perl5-matcher"

          model="detail/detail-model.xpl" view="html-view.xpl">

    </page>

 

I can understand if regular expression matches then it had to go to detail-model.xpl and html-view.xpl

 

But unable to understand from here how its links to crud.xpl i.e persistence layers.

    <page path-info="/fr/service/oracle/crud/([^/]+/[^/]+/(form/[^/]+|data/[^/]+/[^/]+))" matcher="oxf:perl5-matcher"

          model="persistence/oracle/crud.xpl"/>

 

can anyone let me this to know.

 

 

Also what does this mean

<p:param type="input" name="instance"/>

Regards,

Smaran

 

 

Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.

www.wipro.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