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
2 answers

What can i do when allow_store_upgrade fails?

I'm using neo4j in a glassfish server through a modified version of Alex Smirnov neo4j JCA connector. My version is available here : https://github.com/Riduidel/neo4j-connector I'm using this connector with neo4j 1.8. As a consequence, when i want…
Riduidel
  • 22,052
  • 14
  • 85
  • 185
0
votes
1 answer

OSB - JCA Adapter connection error

when I try a flow in OEPE I get this error in my domain's log: "nested exception is: BINDING.JCA-11812 Interaction Processing Error. Error when processing the execution of the interaction to API,[SCHEMA].[PACKAGE].[STORED_PROCEDURE]. An error has…
Xanathos
  • 598
  • 3
  • 15
  • 31
0
votes
3 answers

How to integrate Oracle Advanced Queue with Websphere 7.0

IBM Websphere documentation says that It's possible to use third-party jms providers: http://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.nd.doc%2Finfo%2Fae%2Fae%2Ftmj_instp.html In oracle folder I've found resource…
boris_dev
  • 232
  • 3
  • 12
0
votes
1 answer

JCA or Spring Integration/Camel dilemma

Our application needs to accept client requests on a socket (TCP). I have two options Use spring integration TCP support Pros: 1. We already use spring heavily so there will be less learning curve here. 2. Simplified end-to-end testing without a…
Aravind Yarram
  • 78,777
  • 46
  • 231
  • 327
0
votes
0 answers

Generating key bytes without KeyGenerator

With an environments without JCA(JCE) such as Java ME, would it be OK to generating key (or iv) bytes with java.util.Random? // MIDP // MIDP // MIDP private static final Random RANDOM = new Random(); /** * Generates a new encryption key. This…
Jin Kwon
  • 20,295
  • 14
  • 115
  • 184
0
votes
0 answers

Can I deploy xadisk as a JCA resources in Jetty?

what I want is merge file transaction and db transaction into one. and our application is running on Jetty. but Jetty isn't must. we hope transaction can running standalone, not depend on server. depend on server is acceptable. but it's not the…
ChandlerSong
  • 387
  • 1
  • 14
0
votes
2 answers

Reading and writing to java KeyStore

My app needs only to read private keys(with associated public cert), no writing to KeyStore, no password changing, no changes at all - just reading. Does anybody know for sure that for reading I can use this code: ///doing some actions KeyStore…
pls
  • 565
  • 5
  • 16
0
votes
2 answers

@ConfigProperty on boolean member

I'm trying to compile and deploy neo4j-connector. Two classes in neo4j-connector-impl (Neo4jManagedConnection and Neo4jResourceAdapter) have the following annotation: @ConfigProperty private boolean xa; This compiles fine, but when I try to deploy…
Kricket
  • 4,049
  • 8
  • 33
  • 46
-1
votes
1 answer

How to ensure server certificate is created with which private key through java

Customer has created key and certificate using openssl command below openssl req -newkey rsa:1024 -sha1 -keyout OCkey.pem -out OCreq.pem -subj "/C=country/L=city/O=OCserver/OU=myLab/CN=OCserverName/" -config req.conf openssl ca -in OCreq.pem -cert…
Kanagavelu Sugumar
  • 18,766
  • 20
  • 94
  • 101
-1
votes
1 answer

Decrypt file in java that was encrypted with openssl

The file is encrypted using the following command: openssl enc -aes-256-cbc -in file.txt -out file_enc.txt -k 1234567812345678 The file is decrypted using the following command: openssl enc -d -aes-256-cbc -in file_enc.txt -out file.txt -k…
MIX 2000
  • 1
  • 1
-1
votes
2 answers

Bouncy Castle JCA Provider Version In Classpath Ignored by Java

I am getting a wrong keystore version error on my spring boot application when I attempt to instantiate my keystore that relies on bouncy castle 1.46. I added the right version 1.46 on pom.xml and even on my classpath but when I execute the…
Samuel Owino
  • 747
  • 1
  • 12
  • 24
-2
votes
1 answer

JCA (Resource Adapter) logging not working on Weblogic 12.2.1.2

I am trying to solve an issue related to logging from an outbound resource adapter. It runs on Weblogic 12.2.1.2, and has been written following the Oracle J2EE guide. I have setup the logging descriptor as per the Oracle documentation, and when I…
Antonio Petricca
  • 8,891
  • 5
  • 36
  • 74
1 2 3
13
14