public static void main(String... args) throws Exception { String providerUrl = DEFAULT_PROVIDER_URL; if (args.length != 0) { providerUrl = args[0]; } String jndiName = "HelloSFSB/remote"; Properties props = new Properties(); props.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory"); props.put(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interfaces"); props.put(Context.PROVIDER_URL, providerUrl); InitialContext context = new InitialContext(props); Hello hello = (Hello) context.lookup(jndiName); hello.hello(); hello.destroy(); }
public static void main(String[] args) { Hello h = new Hello(); h.hello(); h.hello("dave"); }