Reputation: 1976
I want to run EJB 2.1
with Wildfly-10 AS
I have a server running on jBoss-EAP-6.2
Following are the configuration xml files
I wanna achieve to run a Web Module (JSF) with existing server (EJB 2.1) running on JBoss-EAP-6.2.
Following are the ideas
MORE / FINDINGS
The Idea
We have a desktop based [swing] application running on JDK 1.7, EJB 2.1, JBoss-EAP-6.2. I want to enable/implement its web module [JSF]
I want to reuse its server [EJB].
My idea is to use EJB 2.1 with JSF on Wildfly or deploy JSF to connect EJB on JBoss-EAP-6.2.
Upvotes: 0
Views: 1714
Reputation: 2152
EJB2.1
to new EJB3.x
. I understand that it will be really a hard way, but it will be easier to extend this application further. Then you will be able to easily write your web module on JSF
within WildFly 10
.WildFly 10
and try to use remote EJB2.x
interfaces within it to access business logic. And then use it to build your web module.REST
facade on top of your EJB
on jBoss-EAP
and then use it the way you want it.Upvotes: 1