|
From: Leif M. <le...@ta...> - 2003-02-17 12:10:08
|
Santiago,
Looking at the log output, it looks like the call to start method of
the class which
implements WrapperListener is not correctly returning. I see the
following line in the
log:
INFO | jvm 1 | 2003/02/12 18:28:04 | calling listener.start()
But I do not see a line like the following:
INFO | jvm 1 | 2003/02/12 18:28:04 | returned from listener.start()
Take a look at that method. I bet that's your problem.
As a note though. If you are not doing anything which requires
direct access to
the WrapperListener methods, you might want to consider just making use
of the
WrapperSimpleApp helper class. If you register a shutdown hook in your
application,
it will shutdown nice and cleanly. This makes the integration with the
Wrapper much
more loose. If fact you should not need to write one line of Wrapper
related Java
code.
Cheers,
Leif
|