[JBoss Messaging] - Re: Messages delivery stops after a while
by timfox
"lieth78" wrote :
| Here is an summary of what is done in the code:
| 1- When the client is started:
| this.queue = (Queue)ctx.lookup("queue/myQueue");
| ConnectionFactory connFac = (ConnectionFactory)ctx.lookup("ConnectionFactory");
| this.jmsQueueConnection = ((QueueConnectionFactory)connFac).createQueueConnection();
| this.jmsQueueSession = this.jmsQueueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
|
|
| 2- The client then loops and invokes the readMessages service, which content is described here:
| this.jmsQueueConnection.start();
| QueueReceiver receiver = this.jmsQueueSession.createReceiver(this.queue);
| //In the second version I declared the receiver object as instance variable
| //instead of local variable: I instanciate it when the readMessages is //invoked for the first time, then I just use the instance
| Message msg = receiver.receiveNoWait();
| //And then msg processing
|
| 3- When the client is stopped:
| jmsConnection.close();
|
| Did I make a mistake somewhere?
|
A couple of observations.
1) You are using the old JMS 1.0 API (QueueConnection and TopicConnection) it is better practice to use the united Session/Connection objects from JMS 1.1- althought this is no big deal.
2) Why are you creating your receiver in the loop?
This is poor practice. Not only will it be slow, it seems you are not closing them either - so eventually you will run out of memory or some other resource (which is probably what is happening in your case)
There are a lot of good resources on the web that describe how to use the JMS API.
The first thing I would do is to go through a JMS tutorial to get familiar with the basic concepts.- the one on the java.sun.com is fairly good.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984093#3984093
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984093
19Â years, 6Â months
[JBoss AOP] - Re: .aop or .jar
by Giordacchio++
No, the errors remain also following your correction about the Ignore attribute. Why I don't have any of these errors with injboss example that works fine?
| 12:51:01,850 ERROR [STDERR] [warn] Could not find class net.sf.cglib.asm.util.TraceClassVisitor that net.sf.cglib.core.DebuggingClassWriter$1 references. It may not be in your classpath and you may not be getting field and constructor weaving for this class.
| 12:51:02,583 ERROR [STDERR] [error] ClassLoader has been garbage collected.. Do verbose mode if you want full stack trace.
| 12:51:03,035 ERROR [STDERR] [warn] AOP Instrumentor failed to transform org.jboss.seam.example.booking.Register$$EnhancerByCGLIB$$2e11b37a$$FastClassByCGLIB$$39a60c49
| 12:51:03,035 ERROR [STDERR] org.jboss.aop.instrument.TransformationException: Failed to aspectize class org.jboss.seam.example.booking.Register$$EnhancerByCGLIB$$2e11b37a$$FastClassByCGLIB$$39a60c49. Could not find class it references org.jboss.seam.example.booking.Register$$EnhancerByCGLIB$$2e11b3
| 7a It may not be in your classpath and you may not be getting field and constructor weaving for this class.
| 12:51:03,035 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.convertReferences(Instrumentor.java:620)
| 12:51:03,035 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.transform(Instrumentor.java:674)
| 12:51:03,035 ERROR [STDERR] at org.jboss.aop.AspectManager.translate(AspectManager.java:908)
| 12:51:03,035 ERROR [STDERR] at org.jboss.aop.AspectManager.transform(AspectManager.java:820)
| 12:51:03,035 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.aspectTransform(AOPTransformer.java:88)
| 12:51:03,035 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.transform(AOPTransformer.java:75)
| 12:51:03,035 ERROR [STDERR] at sun.instrument.TransformerManager.transform(TransformerManager.java:122)
| 12:51:03,035 ERROR [STDERR] at sun.instrument.InstrumentationImpl.transform(InstrumentationImpl.java:155)
| 12:51:03,035 ERROR [STDERR] at java.lang.ClassLoader.defineClass1(Native Method)
| 12:51:03,035 ERROR [STDERR] at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
| 12:51:03,035 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 12:51:03,035 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 12:51:03,050 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 12:51:03,050 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 12:51:03,050 ERROR [STDERR] at net.sf.cglib.core.ReflectUtils.defineClass(ReflectUtils.java:384)
| 12:51:03,050 ERROR [STDERR] at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:219)
| 12:51:03,050 ERROR [STDERR] at net.sf.cglib.reflect.FastClass$Generator.create(FastClass.java:64)
| 12:51:03,050 ERROR [STDERR] at net.sf.cglib.proxy.MethodProxy.helper(MethodProxy.java:81)
| 12:51:03,050 ERROR [STDERR] at net.sf.cglib.proxy.MethodProxy.create(MethodProxy.java:47)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.example.booking.Register$$EnhancerByCGLIB$$2e11b37a.CGLIB$STATICHOOK1(<generated>)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.example.booking.Register$$EnhancerByCGLIB$$2e11b37a.<clinit>(<generated>)
| 12:51:03,050 ERROR [STDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
| 12:51:03,050 ERROR [STDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
| 12:51:03,050 ERROR [STDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
| 12:51:03,050 ERROR [STDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
| 12:51:03,050 ERROR [STDERR] at java.lang.Class.newInstance0(Class.java:350)
| 12:51:03,050 ERROR [STDERR] at java.lang.Class.newInstance(Class.java:303)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.Component.wrap(Component.java:944)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.Component.instantiateSessionBean(Component.java:912)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.Component.instantiate(Component.java:898)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.Component.newInstance(Component.java:1574)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1492)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1466)
| 12:51:03,050 ERROR [STDERR] at org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableResolver.java:44)
| 12:51:03,050 ERROR [STDERR] at com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:134)
| 12:51:03,050 ERROR [STDERR] at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:65)
| 12:51:03,050 ERROR [STDERR] at com.sun.el.parser.AstValue.getTarget(AstValue.java:62)
| 12:51:03,066 ERROR [STDERR] at com.sun.el.parser.AstValue.getType(AstValue.java:55)
| 12:51:03,066 ERROR [STDERR] at com.sun.el.ValueExpressionImpl.getType(ValueExpressionImpl.java:180)
| 12:51:03,066 ERROR [STDERR] at com.sun.facelets.el.TagValueExpression.getType(TagValueExpression.java:60)
| 12:51:03,066 ERROR [STDERR] at com.sun.facelets.el.LegacyValueBinding.getType(LegacyValueBinding.java:94)
| 12:51:03,066 ERROR [STDERR] at org.apache.myfaces.renderkit._SharedRendererUtils.findUIOutputConverter(_SharedRendererUtils.java:55)
| 12:51:03,066 ERROR [STDERR] at org.apache.myfaces.renderkit.RendererUtils.findUIOutputConverter(RendererUtils.java:324)
| 12:51:03,066 ERROR [STDERR] at org.apache.myfaces.renderkit.RendererUtils.getConvertedUIOutputValue(RendererUtils.java:643)
| 12:51:03,066 ERROR [STDERR] at org.apache.myfaces.renderkit.html.HtmlSecretRendererBase.getConvertedValue(HtmlSecretRendererBase.java:103)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIInput.getConvertedValue(UIInput.java:289)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIInput.validate(UIInput.java:265)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIInput.processValidators(UIInput.java:144)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:417)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:417)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIForm.processValidators(UIForm.java:68)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:417)
| 12:51:03,066 ERROR [STDERR] at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:142)
| 12:51:03,066 ERROR [STDERR] at org.ajax4jsf.framework.ajax.AjaxViewRoot.processValidators(AjaxViewRoot.java:389)
| 12:51:03,066 ERROR [STDERR] at org.apache.myfaces.lifecycle.LifecycleImpl.processValidations(LifecycleImpl.java:240)
| 12:51:03,066 ERROR [STDERR] at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:76)
| 12:51:03,066 ERROR [STDERR] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,066 ERROR [STDERR] at org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,066 ERROR [STDERR] at org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:32)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,066 ERROR [STDERR] at org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:67)
| 12:51:03,066 ERROR [STDERR] at org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:223)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,066 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| 12:51:03,066 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
| 12:51:03,066 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| 12:51:03,066 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| 12:51:03,066 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| 12:51:03,066 ERROR [STDERR] at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| 12:51:03,066 ERROR [STDERR] at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| 12:51:03,066 ERROR [STDERR] at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| 12:51:03,066 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
| 12:51:03,097 ERROR [STDERR] [warn] AOP Instrumentor failed to transform org.jboss.seam.example.booking.Register$$FastClassByCGLIB$$e61e2fcb
| 12:51:03,097 ERROR [STDERR] org.jboss.aop.instrument.TransformationException: Failed to aspectize class org.jboss.seam.example.booking.Register$$FastClassByCGLIB$$e61e2fcb. Could not find class it references org.jboss.seam.example.booking.Register It may not be in your classpath and you may not be
| getting field and constructor weaving for this class.
| 12:51:03,097 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.convertReferences(Instrumentor.java:620)
| 12:51:03,097 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.transform(Instrumentor.java:674)
| 12:51:03,097 ERROR [STDERR] at org.jboss.aop.AspectManager.translate(AspectManager.java:908)
| 12:51:03,097 ERROR [STDERR] at org.jboss.aop.AspectManager.transform(AspectManager.java:820)
| 12:51:03,097 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.aspectTransform(AOPTransformer.java:88)
| 12:51:03,097 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.transform(AOPTransformer.java:75)
| 12:51:03,097 ERROR [STDERR] at sun.instrument.TransformerManager.transform(TransformerManager.java:122)
| 12:51:03,097 ERROR [STDERR] at sun.instrument.InstrumentationImpl.transform(InstrumentationImpl.java:155)
| 12:51:03,097 ERROR [STDERR] at java.lang.ClassLoader.defineClass1(Native Method)
| 12:51:03,097 ERROR [STDERR] at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
| 12:51:03,097 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 12:51:03,097 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 12:51:03,097 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 12:51:03,097 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 12:51:03,097 ERROR [STDERR] at net.sf.cglib.core.ReflectUtils.defineClass(ReflectUtils.java:384)
| 12:51:03,097 ERROR [STDERR] at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:219)
| 12:51:03,097 ERROR [STDERR] at net.sf.cglib.reflect.FastClass$Generator.create(FastClass.java:64)
| 12:51:03,097 ERROR [STDERR] at net.sf.cglib.proxy.MethodProxy.helper(MethodProxy.java:81)
| 12:51:03,097 ERROR [STDERR] at net.sf.cglib.proxy.MethodProxy.create(MethodProxy.java:46)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.example.booking.Register$$EnhancerByCGLIB$$2e11b37a.CGLIB$STATICHOOK1(<generated>)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.example.booking.Register$$EnhancerByCGLIB$$2e11b37a.<clinit>(<generated>)
| 12:51:03,097 ERROR [STDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
| 12:51:03,097 ERROR [STDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
| 12:51:03,097 ERROR [STDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
| 12:51:03,097 ERROR [STDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
| 12:51:03,097 ERROR [STDERR] at java.lang.Class.newInstance0(Class.java:350)
| 12:51:03,097 ERROR [STDERR] at java.lang.Class.newInstance(Class.java:303)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.Component.wrap(Component.java:944)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.Component.instantiateSessionBean(Component.java:912)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.Component.instantiate(Component.java:898)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.Component.newInstance(Component.java:1574)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1492)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1466)
| 12:51:03,097 ERROR [STDERR] at org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableResolver.java:44)
| 12:51:03,097 ERROR [STDERR] at com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:134)
| 12:51:03,097 ERROR [STDERR] at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:65)
| 12:51:03,097 ERROR [STDERR] at com.sun.el.parser.AstValue.getTarget(AstValue.java:62)
| 12:51:03,097 ERROR [STDERR] at com.sun.el.parser.AstValue.getType(AstValue.java:55)
| 12:51:03,097 ERROR [STDERR] at com.sun.el.ValueExpressionImpl.getType(ValueExpressionImpl.java:180)
| 12:51:03,097 ERROR [STDERR] at com.sun.facelets.el.TagValueExpression.getType(TagValueExpression.java:60)
| 12:51:03,113 ERROR [STDERR] at com.sun.facelets.el.LegacyValueBinding.getType(LegacyValueBinding.java:94)
| 12:51:03,113 ERROR [STDERR] at org.apache.myfaces.renderkit._SharedRendererUtils.findUIOutputConverter(_SharedRendererUtils.java:55)
| 12:51:03,113 ERROR [STDERR] at org.apache.myfaces.renderkit.RendererUtils.findUIOutputConverter(RendererUtils.java:324)
| 12:51:03,113 ERROR [STDERR] at org.apache.myfaces.renderkit.RendererUtils.getConvertedUIOutputValue(RendererUtils.java:643)
| 12:51:03,113 ERROR [STDERR] at org.apache.myfaces.renderkit.html.HtmlSecretRendererBase.getConvertedValue(HtmlSecretRendererBase.java:103)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIInput.getConvertedValue(UIInput.java:289)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIInput.validate(UIInput.java:265)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIInput.processValidators(UIInput.java:144)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:417)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:417)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIForm.processValidators(UIForm.java:68)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:417)
| 12:51:03,113 ERROR [STDERR] at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:142)
| 12:51:03,113 ERROR [STDERR] at org.ajax4jsf.framework.ajax.AjaxViewRoot.processValidators(AjaxViewRoot.java:389)
| 12:51:03,113 ERROR [STDERR] at org.apache.myfaces.lifecycle.LifecycleImpl.processValidations(LifecycleImpl.java:240)
| 12:51:03,113 ERROR [STDERR] at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:76)
| 12:51:03,113 ERROR [STDERR] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,113 ERROR [STDERR] at org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,113 ERROR [STDERR] at org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:32)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,113 ERROR [STDERR] at org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:67)
| 12:51:03,113 ERROR [STDERR] at org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:223)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,113 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| 12:51:03,113 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
| 12:51:03,113 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| 12:51:03,113 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| 12:51:03,113 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| 12:51:03,113 ERROR [STDERR] at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| 12:51:03,113 ERROR [STDERR] at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| 12:51:03,113 ERROR [STDERR] at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| 12:51:03,113 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
| 12:52:49,693 INFO [Server] Runtime shutdown hook called, forceHalt: true
| 12:52:49,693 INFO [Server] JBoss SHUTDOWN: Undeploying all packages
| 12:52:49,693 INFO [TomcatDeployer] undeploy, ctxPath=/seam-booking, warUrl=.../tmp/deploy/tmp33988jboss-seam-booking.ear-contents/jboss-seam-booking-exp.war/
| 12:52:50,114 INFO [SessionFactoryImpl] closing
| 12:52:50,114 INFO [SchemaExport] Running hbm2ddl schema export
| 12:52:50,114 INFO [SchemaExport] exporting generated schema to database
| 12:52:50,114 INFO [SchemaExport] schema export complete
| 12:52:50,238 INFO [EARDeployer] Undeploying J2EE application, destroy step: file:/C:/Programmi/jboss-4.0.4.GA/server/default/deploy/jboss-seam-booking.ear
| 12:52:50,238 INFO [EARDeployer] Undeployed J2EE application: file:/C:/Programmi/jboss-4.0.4.GA/server/default/deploy/jboss-seam-booking.ear
| 12:52:50,238 INFO [TomcatDeployer] undeploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
| 12:52:50,270 INFO [ConnectionFactoryBindingService] Unbound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' from JNDI name 'java:JmsXA'
| 12:52:50,301 INFO [testTopic] Unbinding JNDI name: topic/testTopic
| 12:52:50,301 INFO [securedTopic] Unbinding JNDI name: topic/securedTopic
| 12:52:50,301 INFO [testDurableTopic] Unbinding JNDI name: topic/testDurableTopic
| 12:52:50,301 INFO [testQueue] Unbinding JNDI name: queue/testQueue
| 12:52:50,316 INFO [A] Unbinding JNDI name: queue/A
| 12:52:50,316 INFO [B] Unbinding JNDI name: queue/B
| 12:52:50,316 INFO [C] Unbinding JNDI name: queue/C
| 12:52:50,316 INFO [D] Unbinding JNDI name: queue/D
| 12:52:50,316 INFO [ex] Unbinding JNDI name: queue/ex
| 12:52:50,332 INFO [DLQ] Unbinding JNDI name: queue/DLQ
| 12:52:50,348 INFO [ConnectionFactoryBindingService] Unbound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' from JNDI name 'java:DefaultDS'
| 12:52:51,844 INFO [HypersonicDatabase] Database standalone closed clean
| 12:52:51,860 INFO [ConnectionFactoryBindingService] Unbound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=bookingDatasource' from JNDI name 'java:bookingDatasource'
| 12:52:51,891 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED shutting down.
| 12:52:51,891 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED paused.
| 12:52:51,891 INFO [SimpleThreadPool] There are still 26 worker threads active. See javadoc runInThread(Runnable) for a possible explanation
| 12:52:51,891 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED shutdown complete.
| 12:52:51,938 INFO [MailService] Mail service 'java:/Mail' removed from JNDI
| 12:52:51,969 INFO [Http11BaseProtocol] Pausing Coyote HTTP/1.1 on http-0.0.0.0-8080
| 12:52:52,982 INFO [StandardService] Stopping service jboss.web
| 12:52:53,014 INFO [Http11BaseProtocol] Stopping Coyote HTTP/1.1 on http-0.0.0.0-8080
| 12:52:53,029 INFO [TomcatDeployer] undeploy, ctxPath=/, warUrl=.../deploy/jbossweb-tomcat55.sar/ROOT.war/
| 12:52:53,029 INFO [TomcatDeployer] undeploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp33948jbossws-exp.war/
| 12:52:53,045 INFO [TomcatDeployer] undeploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/
| 12:52:53,372 INFO [Server] Shutdown complete
| Shutdown complete
| Halting VM
| Terminare il processo batch (S/N)? s
|
| C:\Programmi\jboss-4.0.4.GA\bin>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984091#3984091
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984091
19Â years, 6Â months