How to make EJB client without Web Start?
Hi,
I've written a client that uses Web Start, but Web Start technology doesn't fit my needs (it's hard to write console appclient as I see)
I'd like to know how could I access my EJB's from a simple client application. How can I address them, through JNDI? Does it need programming CORBA?
I'm such a beginner and I've only read the JavaEETutorial.
Thanx.
[393 byte] By [
mbazsa] at [2007-11-27 7:32:11]

# 1
You definitely don't need WebStart to access EJBs from a client. You can launch an Application Client
directly.In the Java EE SDK this is done using the appclient command. Or you can write a
non Java-EE "standalone" client.There are fewer steps involved but the result is not as portable as
an Application Client.You can find simple examples here :
https://glassfish.dev.java.net/javaee5/ejb/examples/Sless.html
We also have an EJB FAQ :
https://glassfish.dev.java.net/javaee5/ejb/EJB_FAQ.html
ksaksa at 2007-7-12 19:12:26 >
