Hi,
I readed Sun's document named "Designing Enterprise Applications with Java2 platform, Enterprise Edition", at p84, it said that EJB clients can be implemented using non-Java language such as VB or VC.Does anybody done like that?If yes, how to implement a non-Java EJB client?
Thanks
Luke
-
How to implement a non-Java EJB client? (3 messages)
- Posted by: Luke Cai
- Posted on: April 07 2001 07:19 EDT
Threaded Messages (3)
- How to implement a non-Java EJB client? by qing yan on April 07 2001 13:25 EDT
- How to implement a non-Java EJB client? by Tony Brookes on April 10 2001 23:34 EDT
- How to implement a non-Java EJB client? by Rajesh Ranjan on April 26 2001 04:42 EDT
- How to implement a non-Java EJB client? by Tony Brookes on April 10 2001 23:34 EDT
-
How to implement a non-Java EJB client?[ Go to top ]
- Posted by: qing yan
- Posted on: April 07 2001 13:25 EDT
- in response to Luke Cai
Convert your EJB's java interface to IDL using tool like
java2idl.Once you got IDL then you are a free bird! -
How to implement a non-Java EJB client?[ Go to top ]
- Posted by: Tony Brookes
- Posted on: April 10 2001 23:34 EDT
- in response to qing yan
Of course using IDL doesn't solve the VB or VC problem unless you...
1) Use CORBA with VC.
2) Use a COM-CORBA bridge with VB.
(2) is really painful and hard to support. Unless of course you are trying to pass each method call in your application through every technology on the face of the earth. :-)
Chz
Tony -
How to implement a non-Java EJB client?[ Go to top ]
- Posted by: Rajesh Ranjan
- Posted on: April 26 2001 04:42 EDT
- in response to Tony Brookes
What about using some application servers?
Ranjan