What is Remote Interface?
Answer / dipen jadav
In EJB applications, remote interface implements all the
possible business methods that are going to be invoked
remotely by a client.
Remote interface extends EJB object interface from Javax.ejb
package and this interface extends java.rmi.remote interface.
An instance of remote interface is sometimes called remote
object.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the main functionality of RRL(Remote Reference Layer)?
What are preemptive scheduling and time slicing and what is the difference between them?
what is Static binding?
what is an isolation level?
What is the RMI and Socket?
What is ioc concept?
what is the life cycle of jsp?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
How do you maintain a stateful session object across the session
what is difference between checked exception & unchecked exception in java?
Explain the advantages and disadvantages of detached objects.
Is it possible to stop the execution of a method before completion in a sessionbean?