• 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

How to load custom plug-ins in J2EE

 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear friends,
First of all let me introduce myself as a novice in J2EE; all my 4+ years work experiance was with core java technologies. The new project which is about to begin is in J2EE and I am presently given basic J2EE training. Now I will come to the problem.

We are to offer a set of interfaces to developers so that they can dynamically couple their custom code to our application, provided they implement an adapter module (as per our spec). In the case of J2EE, how can we do that? Is JCA the only answer to adapt third-party (custom) modules into J2EE environment. The EJBs (our business logic), which are already deployed in J2EE server, should be able to communicate with the external modules being plugged in. In what all ways can we do this in J2EE? The ways I have found out is either by using a JDBC plug-in (custom driver) or by implementing a JCA adapter. Are there any other methods?

Best Regards
 
reply
    Bookmark Topic Watch Topic
  • New Topic