Questions tagged [jca]

The Java Connector Architecture (JCA) defines a standard architecture for connecting the Java EE platform to heterogeneous Enterprise Information Systems (EIS). Examples of EISs include Enterprise Resource Planning (ERP), mainframe transaction processing (TP), database and messaging systems

The connector architecture defines a set of scalable, secure, and transactional mechanisms that enable the integration of EISs with application servers and enterprise applications.

The connector architecture also defines a Common Client Interface (CCI) for EIS access. The CCI defines a client API for interacting with heterogeneous EISs.

The connector architecture enables an EIS vendor to provide a standard resource adapter for its EIS. A resource adapter is a system-level software driver that is used by a Java application to connect to an EIS. The resource adapter plugs into an application server and provides connectivity between the EIS, the application server, and the enterprise application. The resource adapter serves as a protocol adapter that allows any arbitrary EIS communication protocol to be used for connectivity. An application server vendor extends its system once to support the connector architecture and is then assured of seamless connectivity to multiple EISs. Likewise, an EIS vendor provides one standard resource adapter which has the capability to plug in to any application server that supports the connector architecture.

J2EE Connector Architecture Overview

207 questions
0
votes
1 answer

set hostname etc. from Websphere MQ Resource Adapter dynamically

I'm currently struggling with the Websphere Resource Adapter for MQ JMS on the JBoss AS 7.1. The adapter itself works great, but I should be able to set some properties dynamically. For example hostName etc. Currently I have to set the hostName,…
Christian
  • 22,585
  • 9
  • 80
  • 106
0
votes
0 answers

IBM Websphere : J2CA0145W: Unable to start ResourceAdapter

I am trying to deploy an application on WebSphere 7.0 and the Resource adapter is not getting started. What could be the reason for this. Is the resource adapter not accessible by the application being deployed? or is there a WAS configuration that…
naamadheya
  • 1,902
  • 5
  • 21
  • 28
0
votes
0 answers

Default Message Listener with Client acknowledge causes messages to be deleted from queue even if not acknowledged

I am using Default message listener class for listening to MQ which is configured in Jboss using resource adapter. The session acknowledge mode is set to Client acknowledge . I am acknowledging the message if the processing is successful . However…
Nishant Prabhu
  • 85
  • 1
  • 2
  • 11
0
votes
0 answers

When we should go for Java Connection Architecture (JCA) over REST

Popular Enterprise information systems (EIS) provide REST API and JCA to integrate with Java EE web applications. When REST API is avialable, why & when we should go for JCA based integration ? For example, Salesforce provides excellent REST API(s).…
Sairam Krish
  • 10,158
  • 3
  • 55
  • 67
0
votes
2 answers

Netty 4 and JCA WorkManager integration

The question about integrating Netty 3 with JCA Resource adapter was already asked. The solution was quite straightforward: write a custom Executor that wraps JCA WorkManager and pass it to NioServerSocketChannelFactory constuctor. However,…
0
votes
1 answer

GlassFish randomly selects wrong JCA ConnectionFactory for Injection

I am in the process of writing a JCA Resource Adapter for FTP and SFTP. As my goal is to be able to use one protocol completely independent from the other, I have two different ManagedConnectionFactory classes, one for each protocol. Both have…
l4mpi
  • 5,103
  • 3
  • 34
  • 54
0
votes
1 answer

Oracle SOA Suite: One entry per adapter instance in the adapters_config.xml?

I plan to get a Oracle SOA Suite Implementation Specialist (1z0-478) While practicing with example question I encountered a question make me confused: *Each JCA adapter has a single deployment listed in the WLS Console. Identify two accurate…
Esca Tran
  • 129
  • 1
  • 3
  • 14
0
votes
1 answer

java ee job scheduling and execution

In a JEE application there is a need to get rid of numerous JMS queues that support workflow execution. A workflow typically consists of multiple sequential tasks. Tasks may contain external system calls and other business logic. Task processors are…
Peter Schura
  • 130
  • 2
  • 15
0
votes
1 answer

Is this Java-based multi-cipher crypto format implementation secure?

I implemented a crypto format (in the form of a MultiCipherOutputStream and a MultiCipherInputStream) that supports nesting multiple cipher streams into one another. The goal was to produce a flexible crypto file format that will satisfy even the…
binwiederhier
  • 1,893
  • 1
  • 16
  • 23
0
votes
1 answer

Can EIA232 communication be implemented using a Resource Adapter in Java EE?

The question may be already present here on SO, in this case please apologize my not having been able to find it. I'm planning to rewrite a desktop application whose communication layer is currently implemented invoking methods (functions) in a CAN…
András Hummer
  • 960
  • 1
  • 17
  • 35
0
votes
0 answers

OTB JCA mail resource adapter?

I'm looking for the best way to implement a JCA resource adapter to read email, transform and queue the message on a message queue. I am open to any Enterprise stack.
Reuben Peter-Paul
  • 1,550
  • 3
  • 15
  • 25
0
votes
1 answer

Configuring JBoss EPA 6.1 with IBM MQ

I am developing a service for JMS messaging using IBM WMQ version 7.5 as Message oriented middleware. I am in a dilemma. The IBM specification says to use WebSphere MQ JMS API in JAVA EE environment. My sender and receivers will be in remote JBoss…
Mohit Dhuper
  • 423
  • 1
  • 8
  • 17
0
votes
1 answer

What does record oriented data integration mean

In this JCA tutorial here Data integration Lastly, data-level integration implies that the data passed between systems will be in a data/record-oriented manner. What is 'record-oriented'?
Victor
  • 16,609
  • 71
  • 229
  • 409
0
votes
1 answer

How to connect to a remote neo4j instance using a GraphDatabaseService?

We currently have a JavaEE deployment using Glassfish and the JCA neo4j-connector, which means neo4j is started as an EmbeddedGraphDatabase for which we can only use neo4j community. My boss requires me to investigate on how to add…
Riduidel
  • 22,052
  • 14
  • 85
  • 185
0
votes
1 answer

JavaEE Connector Architecture - difference between system contracts and common client interface

i need to create a slideshare to introduce JCA in an easy way. right now i'm trying to understand the whole thing but i'm still stuck in some places. I'm reading an IBM tutorial and in its example code it doesnt implement the transaction and…
Dude
  • 59
  • 1
  • 5
1 2 3
13
14