summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/jndi/InitContext.java
blob: dca940fa8acb271e200db7c5d07a003acaa90aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
package examples.jndi;

public class InitContext {
	public static void main(String args[]) throws Exception {
		// Form an Initial Context
		javax.naming.Context ctx = 
			new javax.naming.InitialContext(System.getProperties());
		System.err.println("Success!");
	}

}