String url = System.getProperty(LWPProperties.RMI_URL);
ObjectServer svr;
try {
svr = (ObjectServer)Naming.lookup(url);
return (Session)svr.startSession(id, cls.getName());
}
catch( Exception e ) {
String msg = e.getMessage();
if( msg == null ) {
msg = "";
}
e.printStackTrace();
throw new RemoteException(msg);
}