[JBoss Portal] - Re: windowState not set on ActionRequest
by hilmer
Okay
I simply do a return from my processAction and then, (according to the spec), in the subsequent doView call renderRequest.getWindowState() should return WindowState.MINIMIZED, but it also returns WindowState.NORMAL, so then the bug lies here?
What does work is if you call actionResponse.setWindowState(WindowState.MINIMIZED) in processAction, in this case the doView is not called at all, and the portlet is indeed minimized.
But if this is how it is supposed to work I really need a way to check the incomming actionRequest for the windowstate parameter.
Something like:
| if (actionRequest.getWindowState() == WindowState.MINIMIZED)
| actionResponse.setWindowState(WindowState.MINIMIZED)
|
But as stated before this does not work.
To me there is definitely a bug somewhere.
--Soren
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4243664#4243664
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4243664
17 years
[EJB 3.0] - Re: Bug: inject WebServiceContext at AroundInvoke
by MrTed
Hi, I had the same problem using JBoss 4.2.3 and JBossWS 3.1.1
I have resolved it via such work around placed in my Interceptor:
| /**
| * Returns true if current context has a webservice context available. This
| * method is a workaround for not working injection of the WebServiceContext
| * via Resource annotation.
| *
| * @param ctx InvocationContext
| * @return true if WebServiceContext is available, false otherwise.
| */
| private boolean isWebServiceContext(InvocationContext ctx) {
| try {
| WebServiceContext wsc = null;
| Field wrapped = ctx.getClass().getDeclaredField("wrapped");
| if (wrapped != null) {
| wrapped.setAccessible(true);
| Object sbctx = wrapped.get(ctx);
| if (sbctx != null) {
| Field ctxField = sbctx.getClass().getDeclaredField("ctx");
| if (ctxField != null) {
| ctxField.setAccessible(true);
| Object context = ctxField.get(sbctx);
| if (context != null) {
| Field webServiceCtx = context.getClass().getDeclaredField("webServiceContext");
| if (webServiceCtx != null) {
| webServiceCtx.setAccessible(true);
| wsc = (WebServiceContext) webServiceCtx.get(context);
| return wsc != null;
| }
| }
| }
| }
| }
| } catch (NoSuchFieldException e) {
| // silent
| } catch (IllegalArgumentException e) {
| // silent
| } catch (IllegalAccessException e) {
| // silent
| }
| return false;
| }
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4243663#4243663
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4243663
17 years
[EJB/JBoss] - Re: [EJB 2 in JBoss 5] Error on ClassCastException
by leethor5
The entire exception is :
| javax.naming.NameNotFoundException: fr.monappli.modele.traitement.service._menu.delegate.MenuService not bound
| at org.jnp.server.NamingServer.getBinding(NamingServer.java:771)
| at org.jnp.server.NamingServer.getBinding(NamingServer.java:779)
| at org.jnp.server.NamingServer.getObject(NamingServer.java:785)
| at org.jnp.server.NamingServer.lookup(NamingServer.java:443)
| at sun.reflect.GeneratedMethodAccessor318.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:597)
| at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:305)
| at sun.rmi.transport.Transport$1.run(Transport.java:159)
| at java.security.AccessController.doPrivileged(Native Method)
| at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
| at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
| at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
| at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
| at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
| at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
| at java.lang.Thread.run(Thread.java:619)
| at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
| at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
| at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142)
| at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)
| at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:722)
| at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:682)
| at javax.naming.InitialContext.lookup(InitialContext.java:392)
| at fr.gouv.defense.sicagem.modele.traitement.service._menu.ServiceAccessor.getMenuService(ServiceAccessor.java:32)
| at fr.gouv.defense.sicagem.webapp._filter.UserContext.<init>(UserContext.java:77)
| at fr.gouv.defense.sicagem.webapp._page.ApplicationAfficheAction.projectExecute(ApplicationAfficheAction.java:126)
| at fr.gouv.defense.sicagem.webapp._strutsClasseBases.ActionBase.frameworkExecute(ActionBase.java:49)
| at com.airial.framework.struts.FrameWorkAction.execute(FrameWorkAction.java:40)
| at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
| at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
| at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
| at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
| at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:444)
| at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
| at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:310)
| at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:696)
| at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:667)
| at org.apache.jsp.logonVerifDpc_jsp._jspService(logonVerifDpc_jsp.java:113)
| at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
| at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
| at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
| at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
| at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:433)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
| at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
| at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
| at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:601)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
| at java.lang.Thread.run(Thread.java:619)
|
The revelant code :
|
| String homeJndi = "fr/monappli/ejb/menu/MenuSL";
|
| try {
| Hashtable<String, String> env = new Hashtable<String, String>();
|
| env.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
| env.put(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interfaces");
| env.put(Context.PROVIDER_URL, "localhost:1099");
| final Context context = new InitialContext(env);
| MenuService menuService = (MenuService) context.lookup(homeJndi);
| } catch(NamingException e) {
| e.printStackTrace();
| }
|
And what do you mean by "do you package any JBoss specific jar files in your application? If yes, then remove them from the packaging." ? I have a jar file with all my EJBs. It contains ejb-jar.xml, service.jndi.properties, ...; if i remove this one, everything will be broken ?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4243656#4243656
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4243656
17 years
[Installation, Configuration & DEPLOYMENT] - Re: mapped-name is required for jdbc
by neelesh.parulkar
Here is snippet from web.xml and -ds.xml respectively:
web.xml:
<resource-ref>
DB Connection
<res-ref-name>jdbc/LOYALTY</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
hsqldb-ds.xml:
<local-tx-datasource>
<!-- The jndi name of the DataSource, it is prefixed with java:/ -->
<!-- Datasources are not available outside the virtual machine -->
<jndi-name>jdbc/LOYALTY</jndi-name>
<connection-url>jdbc:mysql://192.168.1.109:3306/LOYALTY</connection-url>
<!-- The driver class -->
<driver-class>com.mysql.jdbc.Driver</driver-class>
<!-- The login and password -->
<user-name>root</user-name>
root
<!-- The maximum connections in a pool/sub-pool -->
<max-pool-size>5</max-pool-size>
<!-- track unclosed statements -->
<track-statements>true</track-statements>
<!-- REQUIRED IN JBOSS 4.0.5GA; TRYING IN JBOSS 3.2.5 FOR CONSISTENCY -->
<type-mapping>mySQL</type-mapping>
</local-tx-datasource>
I am facing same problem with Jboss 5.1.0 GA. However I am able to deploy the war on 4.2.3 GA successfully. Only change in web.xml being a wrapper tag around resource-ref as <jboss-web>. This is not required in Jboss 5.x.x as this gives invalid schema related errors.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4243654#4243654
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4243654
17 years
[JBoss Messaging] - Re: Messaging 1.4.0 SP3 with JBoss AS 4.2.3
by sahanal
Thank you for the response.
JBM version: jboss-messaging-1.4.0.SP3
We have a pure app server which connects to JBM. we use durable subscribers. Only JBoss restart is solving the problem. client(my appserver) restart is not helping, which means creating new Connection and Session. Also when client is restarted we are able to see the following error: javax.jms.IllegalStateException: Cannot create a subscriber on the durable subscription since it already has subscriber(s)
. Here is the Jboss log
2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.transport.socket.ServerThread] WorkerThread#0[127.0.0.1:3979] closing socketWrapper: ServerSocketWrapper[Socket[addr=/127.0.0.1,port=3979,localport=4457].117459c]
2009-07-14 17:57:51,925 DEBUG [org.jboss.jms.server.remoting.ServerSocketWrapper] wrote CLOSING byte
2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.transport.socket.SocketWrapper] ServerSocketWrapper[Socket[addr=/127.0.0.1,port=3979,localport=4457].117459c] closing
2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.transport.socket.ServerThread] WorkerThread#1[127.0.0.1:3978] closing socketWrapper: ServerSocketWrapper[Socket[addr=/127.0.0.1,port=3978,localport=4457].db1df1]
2009-07-14 17:57:51,925 DEBUG [org.jboss.jms.server.remoting.ServerSocketWrapper] wrote CLOSING byte
2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.transport.socket.SocketWrapper] ServerSocketWrapper[Socket[addr=/127.0.0.1,port=3978,localport=4457].db1df1] closing
2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.InvokerRegistry] removed SocketClientInvoker[25724e, bisocket://10.11.151.170:2050639998] from registry
2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.transport.socket.MicroSocketClientInvoker] SocketClientInvoker[25724e, bisocket://10.11.151.170:2050639998] disconnecting ...2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.transport.socket.SocketWrapper] ClientSocketWrapper[Socket[addr=/127.0.0.1,port=4235,localport=56656].1440636] closing
2009-07-14 17:57:51,925 DEBUG [org.jboss.remoting.callback.ServerInvokerCallbackHandler] ServerInvokerCallbackHandler[ab474q-8irr1u-fx4e2z0n-1-fx4e2ze3-4+ab474q-8irr1u-fx4e2z0n-1-fx4e2zg9-9] shut down
2009-07-14 17:57:56,035 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Tue, 14 Jul 2009 17:57:56>
2009-07-14 17:57:56,035 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
2009-07-14 17:57:56,035 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
2009-07-14 17:57:56,035 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2009-07-14 17:58:06,035 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Tue, 14 Jul 2009 17:58:06>
2009-07-14 17:58:06,035 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
2009-07-14 17:58:06,035 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
2009-07-14 17:58:06,035 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
2009-07-14 17:58:07,222 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 17:58:37,176 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 17:59:07,209 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 17:59:37,163 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:00:06,039 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Tue, 14 Jul 2009 18:00:06>
2009-07-14 18:00:06,039 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
2009-07-14 18:00:06,039 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
2009-07-14 18:00:06,039 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2009-07-14 18:00:07,258 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:00:16,039 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Tue, 14 Jul 2009 18:00:16>
2009-07-14 18:00:16,039 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
2009-07-14 18:00:16,039 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
2009-07-14 18:00:16,039 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
2009-07-14 18:00:37,165 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:00:41,915 DEBUG [org.jboss.security.plugins.JaasSecurityManager.other] CallbackHandler: org.jboss.security.auth.callback.SecurityAssociationHandler@20183
2009-07-14 18:00:41,915 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Created securityMgr=org.jboss.security.plugins.JaasSecurityManager@1b149b8
2009-07-14 18:00:41,915 DEBUG [org.jboss.security.plugins.JaasSecurityManager.other] CachePolicy set to: org.jboss.util.TimedCachePolicy@5ed714
2009-07-14 18:00:41,915 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] setCachePolicy, c=org.jboss.util.TimedCachePolicy@5ed714
2009-07-14 18:00:41,915 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Added other, org.jboss.security.plugins.SecurityDomainContext@7a8310 to map
2009-07-14 18:01:07,072 DEBUG [org.jboss.remoting.transport.socket.ClientSocketWrapper] reset timeout: 60000
2009-07-14 18:01:07,103 DEBUG [org.jboss.remoting.transport.socket.ServerThread] WorkerThread#5[127.0.0.1:2864] closing socketWrapper: ServerSocketWrapper[Socket[addr=/127.0.0.1,port=2864,localport=3873].d40369]
2009-07-14 18:01:07,103 DEBUG [org.jboss.remoting.transport.socket.ServerSocketWrapper] wrote CLOSING
2009-07-14 18:01:07,103 DEBUG [org.jboss.remoting.transport.socket.SocketWrapper] ServerSocketWrapper[Socket[addr=/127.0.0.1,port=2864,localport=3873].d40369] closing
2009-07-14 18:01:07,213 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:01:11,541 DEBUG [org.jboss.remoting.transport.socket.ClientSocketWrapper] reset timeout: 60000
2009-07-14 18:01:11,541 DEBUG [org.jboss.remoting.transport.socket.ServerThread] WorkerThread#5[127.0.0.1:2865] closing socketWrapper: ServerSocketWrapper[Socket[addr=/127.0.0.1,port=2865,localport=3873].55d58]
2009-07-14 18:01:11,541 DEBUG [org.jboss.remoting.transport.socket.ServerSocketWrapper] wrote CLOSING
2009-07-14 18:01:11,541 DEBUG [org.jboss.remoting.transport.socket.SocketWrapper] ServerSocketWrapper[Socket[addr=/127.0.0.1,port=2865,localport=3873].55d58] closing
2009-07-14 18:01:13,853 DEBUG [org.jboss.remoting.transport.socket.ClientSocketWrapper] reset timeout: 60000
2009-07-14 18:01:13,869 DEBUG [org.jboss.remoting.transport.socket.ServerThread] WorkerThread#5[127.0.0.1:2866] closing socketWrapper: ServerSocketWrapper[Socket[addr=/127.0.0.1,port=2866,localport=3873].bbd9e6]
2009-07-14 18:01:13,869 DEBUG [org.jboss.remoting.transport.socket.ServerSocketWrapper] wrote CLOSING
2009-07-14 18:01:13,869 DEBUG [org.jboss.remoting.transport.socket.SocketWrapper] ServerSocketWrapper[Socket[addr=/127.0.0.1,port=2866,localport=3873].bbd9e6] closing
2009-07-14 18:01:37,167 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:02:07,214 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:02:16,043 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Tue, 14 Jul 2009 18:02:16>
2009-07-14 18:02:16,043 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
2009-07-14 18:02:16,043 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
2009-07-14 18:02:16,043 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2009-07-14 18:02:26,043 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Tue, 14 Jul 2009 18:02:26>
2009-07-14 18:02:26,043 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
2009-07-14 18:02:26,043 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
2009-07-14 18:02:26,043 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
2009-07-14 18:02:37,184 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:03:07,216 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:03:37,170 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:04:07,234 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:04:26,047 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Tue, 14 Jul 2009 18:04:26>
2009-07-14 18:04:26,047 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
2009-07-14 18:04:26,047 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
2009-07-14 18:04:26,047 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2009-07-14 18:04:36,047 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Tue, 14 Jul 2009 18:04:36>
2009-07-14 18:04:36,047 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
2009-07-14 18:04:36,047 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
2009-07-14 18:04:36,047 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
2009-07-14 18:04:37,188 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:05:07,220 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:05:37,190 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
2009-07-14 18:06:07,269 DEBUG [org.jboss.jms.server.security.SecurityMetadataStore] No SecurityMetadadata was available for SDSCMPCAMESSAGES1, using default security config
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4243652#4243652
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4243652
17 years