I am getting the exception below. At first I thought it had to do with adding a callback interface (to the scdl, wsdl and component implementation) but the exception persists even when I take out the callback interface.
Perhaps independently, but an async invocation via Axis2ServiceInOutAsyncMessageReceiver is not being able to reach the component and so far I have not been able to determine the cause, the invocation goes as far as the message receiver and returns from the head interceptor without exception, but the component does not get invoked. So far I cannot tell whether this is related or not to the shutdown exception. Any clues? Oct 4, 2006 12:59:15 PM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() Oct 4, 2006 12:59:15 PM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() Oct 4, 2006 12:59:16 PM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() Oct 4, 2006 12:59:16 PM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() Oct 4, 2006 1:00:16 PM org.apache.catalina.core.StandardContext listenerStop SEVERE: Exception sending context destroyed event to listener instance of class org.apache.tuscany.runtime.webapp.TuscanyContextListener org.apache.tuscany.core.component.ComponentInitException: Timeout waiting for context to initialize at org.apache.tuscany.core.implementation.composite.AbstractCompositeComponent.checkInit(AbstractCompositeComponent.java:158) at org.apache.tuscany.core.implementation.composite.AbstractCompositeComponent.publish(AbstractCompositeComponent.java:135) at org.apache.tuscany.spi.extension.CompositeComponentExtension.onEvent(CompositeComponentExtension.java:91) at org.apache.tuscany.spi.component.AbstractSCAObject.publish(AbstractSCAObject.java:94) at org.apache.tuscany.core.implementation.composite.AbstractCompositeComponent.publish(AbstractCompositeComponent.java:136) at org.apache.tuscany.core.implementation.composite.AbstractCompositeComponent.stop(AbstractCompositeComponent.java:114) at org.apache.tuscany.runtime.webapp.WebappRuntimeImpl.destroy(WebappRuntimeImpl.java:148) at org.apache.tuscany.runtime.webapp.TuscanyContextListener.contextDestroyed(TuscanyContextListener.java:95) at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:3770) at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4339) at org.apache.catalina.core.ContainerBase.removeChild(ContainerBase.java:892) at org.apache.catalina.startup.HostConfig.undeployApps(HostConfig.java:1164) at org.apache.catalina.startup.HostConfig.stop(HostConfig.java:1135) at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:312) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119) at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1054) at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1066) at org.apache.catalina.core.StandardEngine.stop(StandardEngine.java:447) at org.apache.catalina.core.StandardService.stop(StandardService.java:512) at org.apache.catalina.core.StandardServer.stop(StandardServer.java:743) at org.apache.catalina.startup.Catalina.stop(Catalina.java:601) at org.apache.catalina.startup.Catalina.start(Catalina.java:576) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
