Your problem is that you are using local interfaces and throwsing
RemoteExeption in you methods such as ejbCreate.
There are 2 ways :
1- Change your interface type to remote and keep throwsing RemoteException
2- Remove "throws RemoteException"s from your methods implementations.