46 lines
1.1 KiB
Java
46 lines
1.1 KiB
Java
package test3_client;
|
|
|
|
|
|
import javax.naming.Context;
|
|
import javax.naming.InitialContext;
|
|
import javax.naming.NamingException;
|
|
import java.util.Properties;
|
|
import test3_persistence.store_class_remote_interface;
|
|
|
|
/**
|
|
* Created by Giovanni on 17/05/2015.
|
|
*/
|
|
public class client {
|
|
|
|
public static void main (String[] args) {
|
|
|
|
Properties props=new Properties();
|
|
/*
|
|
props.put("java.naming.factory.initial","com.sun.jndi.cosnaming.CNCtxFactory");
|
|
props.put("java.naming.provider.url","iiop://localhost:3700");
|
|
*/
|
|
|
|
props.setProperty(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.cosnaming.CNCtxFactory");
|
|
props.setProperty(Context.PROVIDER_URL, "corbaname:iiop:localhost:3700");
|
|
|
|
Context ctx = null;
|
|
try {
|
|
ctx =new InitialContext(props);
|
|
} catch (NamingException e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
Object foo = null;
|
|
try {
|
|
foo = ctx.lookup("java:/global/web/store_class!test3_persistence.store_class_remote_interface");
|
|
|
|
} catch (NamingException e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|