> Is it possible to interact with the NT Scheduler from a Java Application?
The same way you interact with any external process: if there's a command-line client (AT?), you can call Runtime.getRuntime().exec() to spawn it as an external process, and interact with its standard output and input.
If there's only an API interface, then you'll have to write a JNI stub.