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!");
}
}
|