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
2
votes
1 answer

OpenLiberty JCA resource adapter and shared librabries - how?

Is it possible to deploy a JCA resource adapter (rar) that references a shared library, inside the OpenLiberty server? What is the server.xml configuration snippet for this? I looked at the JCA docs for Liberty and found nothing on the topic... My…
Hristo Stoyanov
  • 1,508
  • 3
  • 15
  • 24
2
votes
2 answers

Java Connector Architecture and TCP/IP

So my most basic question here is: how do you build TCP interfaces into your Java EE applications? Instead of interacting with a legacy EIS, I need to interact with a block of TCP/IP ports. Ideally, I'd like a message-driven bean to have it's…
Joseph Weissman
  • 5,697
  • 5
  • 46
  • 75
2
votes
1 answer

Whats wrong with @ConnectionFactoryDefinition (in WildFly) and what should I use instead?

In my development setup I deployed a Resource Adapter to Wildfly 10. It seems to be working fine so far, yet I get a warning like this: 14:57:44,007 WARN [org.jboss.as.connector.deployment] (MSC service thread 1-2) WFLYJCA0028:…
Angelo Fuchs
  • 9,825
  • 1
  • 35
  • 72
2
votes
2 answers

Check the signature on large data sets efficiently using JCA

I have to verify the signature on a file that may be as large as 2Gb, and I want to do so in a way that is as memory-efficient as possible. For various reasons, the file will already be loaded completely into memory, and is accessed using an…
Chris R
  • 17,546
  • 23
  • 105
  • 172
2
votes
0 answers

How to configure Jboss EAP7.0 WorkManager in Spring 4.2

I am trying to implement the jca based jms in spring with Jboss EAP 7.0 and below are my configuration.
Suresh
  • 131
  • 2
  • 9
2
votes
1 answer

Set permissions to file stored using JCA in OSB

I have a proxy which stores a file (Publish action) in a specific directory using a JCA File Adapter. I need to set permissions over the stored file, 777 for instance. Does anyone know how/where to set it? Maybe a property in JCA file?
2
votes
1 answer

JCA resource adapter not recognized on websphere liberty developer tools

I am configuring a JCA resource adapter on Eclipse JEE (Mars) / Websphere Liberty (8.5.5.8) / Websphere Liberty Developer Tools Plugin (8.5.5). The resource adapter is correctly installed with the following server.xml configuration when server is…
2
votes
2 answers

MDB Listener for inbound JCA adapter doesn't start in WildFly

Does somebody managed to deploy in WildFly (9.0.2 or 10.0) a MDB bean which listening for standalone JCA adapter? I've just created an inbound JCA adapter (using ironjacamar-1.2.6) and deployed it on WildFly. Like this: @Activation(messageListeners…
Maxim Karavaev
  • 186
  • 1
  • 9
2
votes
2 answers

What should the JCA deployment descriptor (ra.xml) character encoding be?

Looking through JCA 1.7 specification I could only find in one of their examples on the Resource Adapter Deployment Descriptor the following (Chapter 13: Message Inflow P 13-50): This example is showing the usage of UTF-8 encoding, however there is…
2
votes
1 answer

Why a different key can also decrypt JCE encryptions

I am confused by JCE, I have tried a number of examples and example codes of encrypting and decrypting some text using JCE encryption decryption techniques but reaching on a confusing conclusion or may be missing the whole concept either. Actually…
2
votes
0 answers

Is it possible to change the file name in java code from the Oracle JCA Adapter valves?

I have implemented a pipeline valve with the SOA Suite 11g file adapter. Got java code, like this import oracle.tip.pc.services.pipeline.*; public class MyValve extends AbstractValve { public InputStreamContext execute(InputStreamContext…
Ryan Conn
  • 43
  • 4
2
votes
2 answers

Websphere Liberty Profile and J2C AuthData retrieval via Java API

In full version of Websphere you can define JAAS Authentication Entries. Those entries has unique ID, username and password. Usually those are bounded to other configuration entries in WAS, for instance DataSource configurations. But sometimes you…
Roman Kuzmik
  • 151
  • 5
2
votes
0 answers

Mqtt Client in Java EE application under JBoss

I've developed a test Java EE application to send and receive messages through the MQTT protocol (tcp connection). Under JBoss 7.1 I got a @Singleton @Startup that instantiates an Eclipse Paho client and a callback class. @Singleton @Startup public…
Antonio Foglia
  • 77
  • 2
  • 10
2
votes
1 answer

How to reference an embedded JCA resource adapter

For our current J2EE project based on JBoss, we need to interface with a remote system using message driven beans and a JCA resource adapter provided as a RAR file by a third party. I would like to package and deploy the entire project as an EAR…
cg.
  • 3,648
  • 2
  • 26
  • 30
2
votes
1 answer

How can I deploy a resource-adapter activation in JBoss 7?

I am trying to figure out how to deploy a resource-adapter activation in JBoss 7. Basically, I want to be able to package and deploy a full application without having to modify the base server configuration, in part because I want to bootstrap…
Nicholas
  • 15,916
  • 4
  • 42
  • 66