Process communication.
Hi.
I need to pass an object from a process to another.
The idea is to raise the application, and, after few validations, call an "executable" jar file which contains other application.
What I need is to show a window (splash) between the execution of the first application and the complete load of the second. Then, when second application loaded, splash window must to be closed.
I am trying to to that with 2 process: one raised with a main method and the other using Runtime.exec over a batch file (*.bat). My question, of course, is: how can I pass de window (awt.Frame) objetc from teh first application to the second?

