• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

EJB lookup for Wildfly 20

 
Ranch Hand
Posts: 148
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am working on java upgrade from jboss to Wildfly application server
I am facing some Ejb lookup issue when i call and deploy ejb application on wildy fly

Can anyone tell me what are the steps and jars needed when i deploy and call ejb lookup

I need it asap, appreciate your help
 
Saloon Keeper
Posts: 28807
212
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It depends on the EJB. EHB3 supports both local and remote EJBs. Most EJBs, it turned out, were best as local EJBs, but not all.

Remote EJBs depend on an EJB protocol server (these days it's RMI-IIOP). Wildfly, being a full-stack JEE server includes that service, so to use a remote EJB, you'd look up the EJB as documented in the Wildfly documentation.

A local EJB is located within the webapp that uses it, so the webapp already knows how to find it using a JPA EntityManager.
 
Space pants. Tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic