private RMIServer findRMIServerIIOP(String ior, Map env, boolean isIiop) {
// could forbid "rmi:" URL here -- but do we need to?
final ORB orb = (ORB)
env.get(EnvHelp.DEFAULT_ORB);
final Object stub = orb.string_to_object(ior);
return (RMIServer) PortableRemoteObject.narrow(stub, RMIServer.class);
}
private RMIServer findRMIServerJRMP(String base64, Map env, boolean isIiop)
throws IOException {