Re: Invoking multiple webservices from Action

2009-05-17 Thread sid5
satyanarayana katta wrote: > > You can choose to write your own threading mechanism to invoke the > webservices in parallel. That is what we do. We are using FJTask, which > has a neater Fork and join mechanism for invoking the threads in parallel. > > I was hoping that this would be a commo

Invoking multiple webservices from Action

2009-05-17 Thread sid5
hi We currently have a SOA based application with a struts front end. We have to invoke multiple webservices to get the data to render a single page. I was thinking of writing an Executor service inside an Action class or an Interceptor to do this. Is this the right approach ? I would like the we