Tagged Questions

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

learn more… | top users | synonyms

24
votes
1answer
866 views

Does a JCA 1.6 ResourceAdapter need a ManagedConnectionFactory?

I have written a JCA resource adapter before. However, now I find myself in a position of having to write one solely to get access to the BootstrapContext and its associated WorkManager, and ...
8
votes
5answers
2k views

What are the benefits of JCA?

Our application often connects to different king of back-ends over web services, MQ, JDBC, proprietary (direct over socket) and other kids of transport. We already have a number of implementations ...
7
votes
2answers
256 views

Define cipher suite for TLS in JCA

I want the support of the following cipher suites in TLS using JCA: TLS_PSK_WITH_3DES_EDE_CBC_SHA TLS_PSK_WITH_AES_128_CBC_SHA TLS_PSK_WITH_NULL_SHA TLS_PSK_WITH_AES_128_CBC_SHA256 ...
5
votes
2answers
211 views

Java EE: Creating and deleting socket listeners dynamically from the domain model

I am creating a Java EE application that allows users to add/remove "socketinfo" tables (stored in a database) from a web interface. If the user enables a "socketinfo" from the web interface, the ...
5
votes
2answers
405 views

Use cases for JCA

I read that JCA is for legacy EIS integration. Is this spec geared towards vendors and not the application developer? I am curious to know of use cases where developers wrote JCA adapters to solve ...
4
votes
1answer
50 views

Connecting a Java EE app to an external system

We have a Java EE application running on Glassfish 3.1 that needs to accept notifications from a legacy system written in Java. This legacy system provides a JAR file that should be used by any ...
3
votes
2answers
809 views

Create DES key from 56 bit binary string

I have a 56 bit binary string that i want to use as the secret key for DES encryption. I found the following code at the JCA docs website byte[] desKeyData = { (byte)0x01, (byte)0x02, (byte)0x03, ...
3
votes
2answers
131 views

JCA Inbound Messaging Implementation

I am developing a JCA adapter and I have some doubts about my implementation for inbound messaging. The use case is I need to submit some job to EIS and include a URL as a parameter. When EIS ...
3
votes
3answers
355 views

Java mainframe communication via JCA error - connection is not in transaction

I'm connecting to a mainframe environment from Java using comporsys JCA connector. The java application is deployed in JBOSS. The connector configured in that way: <connection-factories> ...
3
votes
1answer
143 views

Where are the network boundaries in the Java Connector Architecture (JCA)?

I am writing a JCA resource adapter. I'm also, as I go, trying to fully understand the connection management portion of the JCA specification. As a thought experiment, pretend that the only client ...
2
votes
0answers
62 views

Understanding the @ConnectionDefinitions annotation in jca 1.6

I cannot find an example that shows a use case for using the plural @ConnectionDefinitions on a ManagedConnectionFactory implementation. What confuses me is that the singular @ConnectionDefinition ...
2
votes
2answers
159 views

Using Cassandra in JEE (Glassfish)

I am currently working on an enterprise application that is deployed to Glassfish. I am attempting to figure out the right way to communicate to a cassandra backend from within an EJB that has been ...
2
votes
1answer
149 views

HornetQ Integrate with Glassfish Using JCA

how to integrate the hornetq with glassfish using JCA ? Thanks.
2
votes
3answers
935 views

JCA sample implementations

I need to develop a JCA adapter and am looking for some references. I searched on Amazon, and found only 2 JCA books and one of them has pretty bad comments. So I guess that left me with only one book ...
2
votes
1answer
309 views

How to reference an embedded JCA resource adapater

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 ...
1
vote
2answers
43 views

In GlassFish, while writing a JCA adapter, is there a way to map anonymous users to an EIS user?

I've created my own JCA->EIS adapter for a legacy system. I'm having trouble authenticating while connecting to the old system. This is fairly difficult to explain. In GlassFish v3.1.1, after you've ...
1
vote
1answer
49 views

Post Deployment Configuration of MDB using JCA Inbound Socket Resource

I have a message driven bean that is being invoked from data received on a TCP socket via a JCA Resource Adapter in a GlassFish 3.1.1 application server. The deployment descriptor in the ...
1
vote
0answers
63 views

Glassfish does not stop dependent applications registered with a JCA Resource Adapter when changing a configuration property of the RA

(I already posted this one to the glassfish forum a few days ago, but no luck yet :-) The situation: I have a JCA resource adapter (RA) deployed that is configured via a @ConfigProperty annotation. ...
1
vote
2answers
180 views

Java implementations of TSP, OCSP and CMS

I'm trying to understand java APIs for digital signatures. I should use custom cryptoprovider to compose digital signature. I know how to sign document and get detached signature using this CSP, now I ...
1
vote
1answer
111 views

How to create your own security provider with some crypto algorithm?

Using official tutorial i understood the main principles of Java Cryptography Architecture. But neither the officials nor internet gives me anything distinct about creating my own provider and ...
1
vote
1answer
123 views

How to get the java.security.PrivateKey object from RSA Privatekey.pem (from a file)?

I have a RSA private key file (OCkey.pem). Using java i have to get the private key from this file. this key is generated using the below openssl command. Note : I can't change anything on this ...
1
vote
0answers
99 views

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 ...
1
vote
1answer
290 views

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 ...
1
vote
2answers
197 views

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

Which is the best approch to connect IBM Mainframe application using Java Connector Architecure (JCA)?
1
vote
1answer
128 views

JCA accesses file in cluster

In JEE environment, I want to use JCA to access file. The file will be updated hourly. But the complex thing is the JEE environment will be cluster. Does JCA specification support connection in ...
1
vote
1answer
439 views

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, ...
1
vote
1answer
697 views

Get reference to the EJB3 local business interface inside the JCA adapter

I'd like to know whether it is possible to get a reference to the ejb3 local business interfaces inside the jca adapter? Resource adapter and ejb .jar are packed into the same .ear. Application is ...
1
vote
2answers
160 views

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 ...
0
votes
0answers
11 views

How should I migrate an UDP based server from MBean to JCA?

I have a MBean based TFTP server that was implemented under JBoss4 and am (finally) upgrading to JBoss 7 which requires JCA rather than MBean based daemons. How should I go about migrating an UDP ...
0
votes
0answers
20 views

WebSphere 7 JCA CONNECTION_CLOSE_NOTIFIER Event

I have deployed my JCA RA on WebSphere 7 connecting my local DB. My JCA Cx Pool Settings are min=1, max=10. Now, let say my DB has fail to process the request, it reports it to my JCA client by ...
0
votes
1answer
23 views

Is it possible to build a JCA adapter where the connections auto close?

I'm building a JCA adapter with a custom 'connection' class. In all of the examples I've seen, you're supposed to put a "void close()" in your connection class. Then while using your custom ...
0
votes
0answers
24 views

How to add Java Security Provider without certificate ?

I wonder, is there a way to add a new java security provider on my local machine without sending it to Oracle for certificate? The thing is i'm studying JCA and have a task to implement my own ...
0
votes
0answers
27 views

How to pass data from an application to a JCA resource adapter?

I want to configure a self-written JCA 1.6 inbound resource adapter (RA). My big problem is that the RA needs to get access to some (dynamic) configuration data living in the application that uses the ...
0
votes
2answers
103 views

How to set length of message authentication code in java jce/jca

i'm using the following code to get a AESCMAC Mac mac = Mac.getInstance("aescmac", new BouncyCastleProvider()); mac.init(k_mac ); byte[] tooLong = mac.doFinal(tmp); doFinal will generate a ...
0
votes
1answer
46 views

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 ...
0
votes
0answers
413 views

class loading of an inbound resource adapter on JBoss 7.0.1?

I use the JBoss AS 7.0.1 and have written a simple inbound resource adapter that acts as an UDP-Listener. When I deploy my RA, the container calls the ResourceAdapter.start(BootstrapContext ctx) ...
0
votes
1answer
126 views

How to marry NioServerSocketChannelFactory and WorkManager

I am looking to implement a JCA Resource adapter to accept socket connections from within J2EE container. I need to somehow be able to use WorkManager to manage threads in netty's ...
0
votes
1answer
106 views

How to manage the life cycle of JCA ManagedConnectionFactory?

I deploy the rar file by placing it in the deployment folder in jboss as 7. Later deploy my war file. This connector in bound to a JNDI location by definition inside standalone.xml. When it is ...
0
votes
0answers
46 views

How to get installed JCA adapter information from WebLogic

I would like to know how I could get information about the installed JCA adapters (such as adapter's name, version) from WebLogic server. My application is ADF-BC application and I need to grab ...
0
votes
2answers
109 views

SFTP JCA Connector?

I'm building a Spring 3.0 app that is running on JBoss 6.x. I have a need for my application to access files (get and put) via sftp. Having never done this before, I did some research and found that ...
0
votes
1answer
254 views

Alternative to JCA

Is there an alternative to JCA(resource adapter) that works on tomcat instead of application server?
0
votes
1answer
87 views

Can you use ActivationSpec values to initialize MDB?

I have a JCA resource adapter that sends messages to a message-driven bean (MDB). I would like to be able to use the ActivationSpec properties to initialize the MDB instance. Is it possible to get ...
0
votes
1answer
134 views

JCA Adapter Packaging

I have a question regarding packaging of a JCA adapter. I have packaged a few jar files inside my JCA adapter rar file. I am using Weblogic. I would like to know whether the jar files placed inside ...
0
votes
2answers
440 views

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 ...
0
votes
2answers
159 views

JMS for JCA Inbound Messaging?

I am implementing JCA Inbound model so I am studying available reference implementations that I found from Google. So far I managed to find 2 sample implementations and in both implementation, for ...
0
votes
0answers
102 views

How to maintain multiple connection factory descriptors for JBoss AS 5.1.0 in Maven project

I migrated my JCA 1.5 connector project from eclipse project to maven project. In eclipse I've managed *-ds.xml files for target deployment systems with ant script. Is there way in Maven to manage ...
0
votes
1answer
101 views

JBPM 4.4 resource adapter

Is there any JCA Resource adapter available for JBPM which can be used? How is JBPM used in production environment where we dont have Jboss App server?
0
votes
1answer
464 views

Accessing Java Connector Architecture (JCA) from a Non-Managed environment

We have been using a JCA to interface with a low-level network resource from within WebSphere, however we have a requirement to be able to access the same network resource externally from Tomcat (i.e. ...
0
votes
1answer
2k views

Different kind of Java EE projects

What is the different between different kind of Java EE projects in Eclipse WTP? There are: Application Client Project Connector Project Enterprise Application Project Utility Project