} catch (Exception e) {
// Add some understandable string
throw new Exception("RMI connection failed : ", e);
}
Binding bindingConfiguration = gameServerConfiguration.getBinding();
String bindingIp = bindingConfiguration.getIp();
int bindingPort = bindingConfiguration.getPort();
try {
InetSocketAddress hostAndPort = new InetSocketAddress(InetAddress.getByName(bindingIp), bindingPort);
GameServerPortalImpl gameServerPortal = new GameServerPortalImpl();
int portalCallbackPort = gameServerConfiguration.getPortalCallbackPort();