How to do the below code in Spring? any Help will be appreciated or link to any doc is also appreciate
Code:
 Hashtable < String, String > env = new Hashtable < String, String > ();
                    env.put("java.naming.provider.url", url);
                    context = new InitialContext(env);
                Object objref = context.lookup(name);
               ABCHome home = (ABCHome) PortableRemoteObject.narrow(objref,
                                                                 ABC.class);
                RemoteClass    remote = home.create();