[Petals.Container.Components.petals-bc-mail]-INFO 2012-03-15 11:52:51,050 Stop component...
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,050 Calling specific stop...
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,081 Specific stop done.
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,097 Stopping the notification service
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,112 Notifications are not active, do not unregister on broker
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,331 Thread 'petals-bc-mail -JBI Acceptor Thread #2' interrupted, stop accepting JBI messages
[Petals.Container.Components.petals-bc-mail]-INFO 2012-03-15 11:52:51,347 Component stopped
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,331 Thread 'petals-bc-mail -JBI Acceptor Thread #3' interrupted, stop accepting JBI messages
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,331 Thread 'petals-bc-mail -JBI Acceptor Thread #1' interrupted, stop accepting JBI messages
[Petals.JBI-Management.InstallationServiceImpl]-INFO 2012-03-15 11:52:51,362 Component 'petals-bc-mail' stopped
[Petals.Container.Components.petals-bc-mail]-INFO 2012-03-15 11:52:51,409 Shut down component...
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,425 Calling specific shut down...
[Petals.Container.Components.petals-bc-mail]-FINE 2012-03-15 11:52:51,440 Specific shut down done.
[Petals.Container.Components.petals-bc-mail]-INFO 2012-03-15 11:52:51,440 Component shut down
[Petals.JBI-Management.InstallationServiceImpl]-INFO 2012-03-15 11:52:51,440 Component 'petals-bc-mail' shut down
[Petals.JBI-Management.InstallationServiceImpl]-SEVERE 2012-03-15 11:52:51,456 Failed to initialize Component Bootstrap
javax.jbi.JBIException: Bootstrap failure on INIT
at org.ow2.petals.container.thread.BootstrapThread.doTask(BootstrapThread.java:114)
at org.ow2.petals.container.thread.AbstractThread.run(AbstractThread.java:110)
Caused by: java.lang.NullPointerException
at org.ow2.petals.component.framework.jbidescriptor.JBIDescriptorBuilder.buildJavaJBIDescriptor(JBIDescriptorBuilder.java:269)
at org.ow2.petals.component.framework.JBIBootstrap.init(JBIBootstrap.java:107)
at org.ow2.petals.container.thread.BootstrapThread.doTask(BootstrapThread.java:104)
... 1 more
[Petals.JBI-Management.InstallationServiceImpl]-INFO 2012-03-15 11:52:51,925 Installer of the component 'petals-bc-mail' succesfully unloaded
Two JBIBuilderDescriptors are used by a component:
The JBIBuilderDescriptor of the runtime part can be easily fixed introducing a method close() to free static resources (set to null).
But the fix of the JBIBuilderDescriptor of the boostrap part is more difficult because the boostrap is initialized when unloading the component installer:
- one by the bootstrap part,
- and one by the runtime part.
The JBIBuilderDescriptor of the runtime part can be easily fixed introducing a method close() to free static resources (set to null). But the fix of the JBIBuilderDescriptor of the boostrap part is more difficult because the boostrap is initialized when unloading the component installer: