which Stateless bean instance assigned to EJB object to serve the client, when two Stateless beans implements single remote interface and with same name
Ex:
@Stateless(name="KING")
public class One implements RemoteInterface{
}
@Stateless(name="KING")
public class Two implements RemoteInterface{
}
I suppose you will likely to get
CreateExceptionorNameAlreadyBoundException, not sure though. Try it out, why not?