Showing search results in separate Deployment

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

Showing search results in separate Deployment

Madhav1066
Hi ,
    I am working on Orbeon separate deployment process.
WAR1 --> Orbeon
WAR2 --> TestWar

I have launched UI in Orbeon and i have given a request to fetch the DB values . That request is been trapped by Servlet in TestWar and accesses DB and gets results . Now i got List.
Now i need to send these List to Orbeon Form runner to display results .
How to send back to Orbeon UI and Iterate ?
Please help me in achieving .

Regards,
Madhav
Reply | Threaded
Open this post in threaded view
|

Re: Showing search results in separate Deployment

Erik Bruchez
Administrator
Madhav,

> "i have given a request to fetch the DB values"

How so? Is this with a Form Builder database service?

What are you trying to achieve? Please provide details.

-Erik
Reply | Threaded
Open this post in threaded view
|

Re: Showing search results in separate Deployment

Madhav1066
Hi Erik ,
           I have 2 war files . 1 ) Orbeon and 2 ) TestApplication
-> Orbeon used to create the UI . from here i am submitting data.
-> TestApplication is used to trap the request from Orbeon .Here i have controller to trap request . From the controller only i am accessig DB and getting results .

Till here is fine . From here , i want to send back the results to Orbeon UI (running in Orbeon war ) and display the all details returned from Controller ( In TestApplication ).

I am not using Form Builder database service. I am using JDBC service from controller ( as a normal JAVA programming )