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
1
vote
1 answer

Migrating from JCA to OSGI Is it a good idea?

I have a JCA adapter for connecting to EIS. Is it a good idea to replace the adapter with an OSGI module? The features I need are Access the OSGI module from ejb3 Access the OSGI module from CDI beans Access the OSGI module from a servlet Support…
kiran.kumar M
  • 811
  • 8
  • 25
1
vote
0 answers

Open Liberty 21.0.0.07 JMSActivation spect "Active" connections in the queue. There are two active connections in parallel and I want to limit to 1

Everytime my application starts up it is spinning two "active" MDB connections, and we want to restrict it to only 1 active while the rest should be inactive. I tried putting the following maxPoolDepth="1" maxMessages="1" But still there are two…
Daniyal
  • 11
  • 2
1
vote
1 answer

How do I programmatically install a certificate to the windows personal certificate store using Java?

In the windows personal certificate store, I am trying to programmatically install a certificate with the private key(using method setKeyEntry) using Java. But I get an exception when I do that. Caused by: java.lang.UnsupportedOperationException:…
1
vote
1 answer

Deploying an MDB to listen to Kafka on Wildfly erros: WFLYEJB0383: No message listener of type fish.pay....KafkaListener found in resource adapter

I am trying to use the [JCA resoruce-adapters][1] to use an MDB to connect to kafka. Following are the entries in the standalone-full.xml to configure the kafka resoruce adapter and the related ejb-mdb definition : Note that the i have deploying…
1
vote
0 answers

Does the update() method of the class Cipher have to return encrypted data or data can be buffered internally?

I am implementing a provider for AES for the Cipher class of the JCA (Java Cryptography Architecture). The class Cipher adopts the init(), update(), doFinal() paradigm. The init() method is called to initialize the cipher. The method update() is…
lucas
  • 11
  • 1
  • 2
1
vote
1 answer

File Encryption with the Java Cryptography Architecture using AES with a 128-bit key and PBKDF2

I am getting this error when I am decrypting a file I am using PBKDF2 to convert a passphrase to a key and then using it. The encryption is working good but when I am trying to decrypt the same file it is giving the below error. The decrypted file…
1
vote
1 answer

Multiple Datasource-Files in one EAR

I'm testing the sapbabijca for jboss 6. Currently i have 2 -ds.xml files in my ear. One is for my jdbc connection, the other contains the config of my sap connector. Now, when i try to deploy my ear i get: java.lang.IllegalArgumentException:…
Laures
  • 5,389
  • 11
  • 50
  • 76
1
vote
1 answer

Ironjacamar deployment attribute

I have a very large app which I'm trying to port to wildfly 12 from jboss 5. I know very little about the app. At present I'm seeing this error in the wildfly logs 07:37:49,040 ERROR …
john
  • 85,011
  • 4
  • 57
  • 81
1
vote
1 answer

Websphere liberty server JCA (Java connector architecture), JNDI and resource adapter

I have created two projects on Eclipse JEE: 1) Connector-ra.rar : this project has java class and ra.xml. This is my resource adapter ra.xml:
1
vote
4 answers

Which is the best approach to connect IBM Mainframe application using Java Connector Architecture (JCA)?

Which is the best approach to connect IBM Mainframe application using Java Connector Architecture (JCA)?
user486631
1
vote
2 answers

JNDI lookup of JCA 1.6 on GlassFish

I`m newbie at jca. I read specification of jca 1.6 and there are a lot of references to jndi like this: A component looks up a ConnectionFactory instance from the JNDI namespace ... Or initctx.lookup(“java:comp/env/eis/MyEIS”); But I couldn`t…
Andrey
  • 77
  • 1
  • 11
1
vote
1 answer

How to retrieve a PrivateKey from Azure Key Vault

I'm building a xml document signature API backed by Azure Key Vault (AKV). I have an asymmetric certificate imported into AKV, which is stored as [Key, Secret and Certificate]. I've managed to sign the document, but I think that I'm not getting…
DTodt
  • 380
  • 6
  • 19
1
vote
1 answer

Connect tuxedo Services in Spring boot

Is there any possibility to connect tuxedo Services in Spring boot application using Oracle JCA tuxedo resource adaptor?
Jay
  • 11
  • 3
1
vote
2 answers

Determine JNDI portable name within an javax.enterprise.inject.spi.Extension

I am implementing a JCA inbound resource adapter to allow an EIS to send messages to an application deployed on a Java EE Application server. Only EJBs annotated with my annotation should be accessible so I have used a…
Chris
  • 66
  • 6
1
vote
1 answer

JCA accesses file in cluster

In a Java EE environment, I want to use JCA to access a file. The file will be updated hourly. But the complex thing is the Java EE environment will be in a cluster. Does the JCA specification support connections in a cluster?
卢声远 Shengyuan Lu
  • 31,208
  • 22
  • 85
  • 130