I'm using Java with arcobjects. Prints "Trying to create a gp object...", but never gets to "..Done!". Any suggestions? Have lots of other arcobjects code that works. For some reason can't get this one line to work! Its a drag as its kinda an important one!
Code:
...
public createGp() {
try{
dealWithLics();
System.out.println("Trying to create a gp object...");
GeoProcessor gp = new GeoProcessor();
System.out.println("..Done!");
} catch (Exception e) {
e.printStackTrace();
}
}
...