Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does EJB internally use sockets while exchanging beans with clients?

share|improve this question
1  
I'm curious on the question behind the question. All client-server communication in Java uses Sockets. – David Blevins Oct 23 '10 at 2:45

1 Answer

up vote 2 down vote accepted

As far as I know EJB is implemented RMI and RMI is implemented by using Sockets

share|improve this answer
Do you have any example how RMI internally handles Socket programming – Sujeet Oct 12 '10 at 4:21
It's not specified. The only examples are in the source code. – EJP Oct 12 '10 at 5:22
1  
Minor trivia: many servers don't actually use the RMI protocol (WebLogic, WebSphere, OpenEJB). The actual spec requirement is that application developers ensure their objects are RMI-compatible. The server is actually free to use whatever protocol it wants. – David Blevins Oct 23 '10 at 2:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.