PDA

View Full Version : Spring's Accessing Ejb which are built without spring



ameriquestspring
Apr 29th, 2005, 11:19 PM
I have a question that is whether a client (a spring web controller
) can acess ejb which is not implemented in spring way. I am trying to build j2ee application with web tier and ejb tier. I am using spring for my web tier and xdoclet to build ejb in myeclipse. I have not be able to make my web servlets access thsoe ejb built with xdoclet.

I run pro String example. It works but that exmple has ejb implemented in spring.

Thanks

Rod Johnson
Apr 30th, 2005, 08:20 AM
I have a question that is whether a client (a spring web controller
) can acess ejb which is not implemented in spring way.
Yes.

ameriquestspring
May 1st, 2005, 12:55 AM
I have a question that is whether a client (a spring web controller
) can acess ejb which is not implemented in spring way.
Yes.


My remote ejb (slsb) is non-spring implemented with xdoclet, web tier's servlet is spring based. All is done is in myeclipse and deployed on jboss 4.0rc1. It works fine though I have to read two posts in here thread carefully.
Also proSpring's ejb chapter 13 is a nice example to start.

http://forum.springframework.org/viewtopic.php?t=2532
http://forum.springframework.org/viewtopic.php?t=1955

A