Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we Call EJB (Enterprise java bean) hosted on weblogic server from any other client (jboss client)?

We have a EJB hosted in a WebLogic server. I have a client with wlfullclient.jar who is ready to call the same EJB. But the problem here is the dependency (wlfullclient.jar) is not scalable because of the way we are generating this jar. So, my team suggested me to try other alternates to call the same ejbs.

So, here my question is 'Is it possible to call ejbs hosted in WebLogic server from any other client? like JBoss client, etc'.

like image 501
Bandham Manikanta Avatar asked Sep 16 '25 00:09

Bandham Manikanta


1 Answers

WLS documentation has a document: https://docs.oracle.com/cd/E24329_01/web.1211/e24378/wlthint3client.htm#SACLT379

also, WLS installation has sample code about remote EJB clients.

The client stubs will depend of your EJB remote interfaces.

like image 101
devwebcl Avatar answered Sep 17 '25 19:09

devwebcl