*/
@SuppressWarnings("unused")
private WeeService getRemoteWeeServiceByJNDI() {
try{
Context jndiContext = new javax.naming.InitialContext();
WeeService wee = (WeeService) PortableRemoteObject.narrow(
jndiContext.lookup("planets-project.eu/WeeService/remote"), WeeService.class);
return wee;
}catch (NamingException e) {
log.error("Failure during lookup of the WeeService PortableRemoteObject: "+e.toString());
return null;