Jacob can register Java classes for MS application events or callbacks. The normal flow for this is:
1) Application thread creates an instance of the event handler and registers it with Jacob
2) The application continues on doing other work.
3) Some time later, the MS application takes some action and initiates the event callback.
4) The Java VM receives the event and spins up a new thread to handle it.
5) The Jacob jni EventProxy in the dll is called by the VM.
6) The Jacob jni EventProxy creates Variant objects to handle the parameters of the passed in event.
7) The Jacob jni EventProxy sends the name of the callback and the array of Variant objects to the Java InvocationProxy that was registered to catch events.
8) The Java InvocationProxy uses reflection to map the event name to a method name with the exact same name.
9) The Java InvocationProxy sends the message to the registered event handler and returns if the event handler is of type void (standard behavior).
10) The Java InvocationProxy sends the message to the registered event handler and returns the Variant that resulted from the call back to the Jacob jni EventProxy that then returns it to the windows calling program.
Swing developers should note that this message comes in on a thread other than the event thread. All objects receiving events that require user intervention or drawing in the UI should use invokeLater() to post requests for actions onto the event queue. Failure to do so will insure random failures in the GUI.
Java Web Start (JWS) and other launchers can have additional issues related to the class loader. The Jacob C++ library uses FindClass() to find the Variant class when building the parameter list. FindClass() uses the system class loader which includes only the classes specified at run time or in the CLASSPATH. Most of the application classes in this situation live in an alternate set of class loaders that were created when the launcher located and ran the application classes. This means that the search for Variant will fail usually with the silent and immediate termination of the Java application. The thread classloader probably can’t be used to try and find the class because this new thread does not have a classloader associated with it other than the system class loader. The end result is that the Variant class needs to be located via other means and that the thread classloader should be set to be the context class loader of the event handler class.
<b>1.8 and 1.9 behavior</b>
The Jacob EventProxy class has been modified (off of the 1.8 tree) so that it takes a two step approach towards fixing these problems.
1) The EventProxy constructor now accepts an extra object, an instance of the Variant class. This gives the EventProxy a way to get to the Variant class and thus to its classloader. All of the callers of the constructor have been modified to pass a Variant object to the EventProxy without programmer intervention.
2) EventProxy first attempts to locate the Variant class using FindClass()
3) Failing that, it looks to see if a variant object had been passed in. If so, it calls class() and goes from there.
4) If all that fails, it logs a message and then fails in the spectacular fashion of the previous versions.
<b>1.10 behavior</b>
The Jacob EventProxy class has been modified so that it takes a different approach towards fixing this problem.
1. All objects that request event notification are now wrapped in a Java InvocationProxy so that a standard interface is always presented to the JNI EventProxy object.
2. The EventProxy constructor accepts an Java InvocationProxy as the object that will receive any callbacks for this set of events.
3. The Java InvocationProxy has a method on it that will return the Variant class that the EventProxy.
Developers can receive call back events in JWS other Java launching programs without implementing any additional code. They should be aware that their callback methods may need to set the class loader. If they expect to create any objects.:
Public xxx someHandler(Variant[] foo){
Thread.currentThread().setContextClassLoader(
this.getClass().getClassLoader());
// do something
}
There may still be a dual event queue issue in JWS applications that needs to be looked at.