• 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
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Java Connectors/ MQ series/Tuxedo etc

 
Ranch Hand
Posts: 123
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please tell me about the differences between Java
connectors and existing EAI's that really matters ?
 
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
Java Connector Architecture provides you a common API in Java (thus exploiting its obvious advantages), so that you can integrate the existing EIS (Enterprise Information Systems) with your App server seamlessly.
Through what is called as Resource Adapters, the existing multiple EISs can be integrated to a given AppServer. For this, the App Server need to have extended/adopted the J2EE standards. Through this JCA, you can integrate even legacy systems.
The existing EAI tools have got their own proprietary connection and integration protocol and mechanisms. There is no standard. JCA attempts to bring them under one roof - J2EE.
These Resource Adapters execute/follow a certain protocol what would be called as System Contract between itself and the Appserver. This include Connection, Transaction and Security Management.
For more information this link would be quite useful.
http://java.sun.com/j2ee/connector/
 
Author
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have asked a great question.. where does JCA fit into the traditional EAI picture.
Well, JCA extends the application servers capability to interface with legacy and other non-J2EE applications and application environments.
JCA also establishes standards that are uniform from the J2EE application servers perspective when interfacing with different legacy applications.
However EAI is more then just connectivity or interfaces. It is about transformation, filtering, and routing of information as well. Hence in my perspective EAI tools enable you to manage the end-to-end integration more easily (hopefully) and JCA enables you to implement some of the interfaces and connectivity from the application server perspective.
If you want to maximize the ROI from you intergration projects then you need to find ways to integrate EAI tools with J2EE application servers and JCA resource adapters. That is one of the objectives of defining a CCI based API for all resource adapters.
Hope this helps.
Atul
 
Tom Stevns
Ranch Hand
Posts: 123
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Atul !
What do You use as host-emulator when developing
with a JCA
How do you use WSAD(from IBM) when developing
with a JCA
 
Atul Apte
Author
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Tom,
One way to use host emulation or screen scrapping tools or even terminal emulation protocols is to develop a CCI that will support screen interactions.
So if you have an host emulator that has a well defined protocol you could extract a lot of meta-data as well as screen data before invoking the CCI interface of the JCA adapter.
I would recommend that you evaluate stronger integrate frameworks that will enable you to link the host emulator to the JCA adapter (CCI).
Remember you may have to do this in a bi-directional way (from host emulator to JCA/CCI and JCA to host emulator).
If you want, I can send you a CD with a framework that we built which you may find interesting. Use it to do your research and let me know if you think my thinking is appropriate for your integration scenario.
Atul
 
For my next trick, I'll need the help of a tiny ad ...
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic