• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

A single web-application communicating with different 3-party systems and gathering responses

 
Ranch Hand
Posts: 276
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My apologies in case this topic does not belong to this forum.I am need of suggestions regarding what all Java technologies or API are available/can be used to handle the below mentioned scenarios.

Following are the applications involved in a proposed system:

MainWebApplication - a web application
ExternalApplication_A - an external application
ExternalApplication_B - an external application
ExternalApplication_C - an external application

MainWebApplication will send request to each of the ExternalApplication(s) (and the request needs to be in the ExternalApplication's desired format) and gather the responses obtained from each of the ExternalApplication(s) and render to the user.

For e.g. ExternalApplication_A exposes an XML API to communicate with it and requires a XML request from MainApplication and will send back a XML response to the MainApplication.Also a constraint is there that ExternalApplication can or cannot be a web-service.

Thanks.
 
reply
    Bookmark Topic Watch Topic
  • New Topic