1

I'm working on a new application using EJB3 -> BlazeDS -> Flex. I can't find good example to see how to integrate EJB with BLAZEDS. Can someone give me some pointers on how to link them together.

GEOCHET
  • 21,119
  • 15
  • 74
  • 98
Maksim
  • 16,635
  • 27
  • 94
  • 135

1 Answers1

1

BlazeDS is essentially a Tomcat server. Tomcat does not fully support J2EE, but it does support some JNDI. You can put EJB's into WEB-INF/web.xml and META-INF/context.xml

Here is Tomcat's documentation on using beans:JNDI resources

EDIT: Found this for Glassfish -> BlazeDS -> Flex: Flex-BlazeDS-and-GlassFish

CookieOfFortune
  • 13,836
  • 8
  • 42
  • 58