code crash
"....EJB 2.0 introduced the concept of local and remote interfaces. The main purpose
of these interfaces is to alleviate some of the overhead in having to call
every bean as though it were on a remote computer. Both the Course and
Department beans use local bean interfaces.
For the local interface to work, the bean must be called from the same Java
Virtual Machine (JVM) as the client program. This eliminates all overhead in
calling from one JVM to another. The Department and Course examples use
the local interface to enable fast access between the Department and Course
classes...."
so, if i develope an EJB with local interfaces and later on if i place my client in another JVM ...will my code going to crash ?

