Prashant
Prashant

Reputation: 1

EJB 3.1 remote access + Jboss 7.3 +JPA

I have created a EJB 3.1 application which uses remoting EJB project jar is deployed on Jboss application and Web project Client war is deployed on Tomcat server both the servers are running on different machine and used JPA for database operation in EJB project which is lookup from Web Project deployed on tomcat. Can somebody suggest me how i can get reference of data source in remote client application and run a select query on that reference. Below link i have used for reference. URL: https://tutorialsjoint.com/ejb-stateless-implementation-using-remote-jndi-lookup/

Upvotes: 0

Views: 530

Answers (1)

Simon Martinelli
Simon Martinelli

Reputation: 36223

This is no longer possible.

It was possible to give a JNDI name to the datasource that could be access from remote until JBoss EAP 5.

Upvotes: 1

Related Questions