[JBoss Portal] - Re: IPC WindowActionEvent getParameters()
by jonnydscott
If I use seperate classloaders for the sar I get the following:
| Caused by: javax.management.InvalidAttributeValueException: Set attribute has class class $Proxy141 loaded from org.jboss.mx.util.MBeanProxyExt$2@fc9074 that is not assignable to attribute class interface org.jboss.portal.core.event.PortalEventListenerRegistry loaded from org.jboss.mx.loading.UnifiedClassLoader3@fac2be{ url=file:/home/jboss/jbossas/jboss-4.0.3SP1/server/uat/tmp/deploy/tmp60673RSBArea6.sar ,addedOrder=95}
| at org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.checkAssignable(ModelMBeanAttributeInterceptor.java:214)
| at org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:73)
| at org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:61)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
| at org.jboss.mx.server.AbstractMBeanInvoker.setAttribute(AbstractMBeanInvoker.java:442)
| at org.jboss.mx.server.MBeanServerImpl.setAttribute(MBeanServerImpl.java:593)
| at org.jboss.system.ServiceConfigurator.setAttribute(ServiceConfigurator.java:665)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4020130#4020130
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4020130
19Â years, 2Â months
[JBossCache] - Re: One node in two clusters?
by chrismeadows
I've almost achieved what I need by using TcpDelegatingCacheLoaders. The configuration I have is:
Cluster 1 has two nodes A and B replicating using UDP.
Cluster 2 has two nodes C and D replicating using UDP.
A, B, C, D all use unshared cacheloaders
Clusters 1 and 2 cannot find each other
Node A has a chained TcpDelegatingCacheLoader, delegating to a TcpCacheServer that wraps node D
Node C has a chained TcpDelegatingCacheLoader, delegating to a TcpCacheServer that wraps node B
Now what happens is that a single cache change is continually propagated in a loop, typically A->C->B->D->A, because A does not know that the update incoming from D originated from A (A and D are in separate clusters).
I think I'm close to what I am trying to achieve; can anyone fill in the miss bits? Can the data packets be given UUIDs so that A can ignore packets that it created?
Also, it looks like the true tag is ignored for the TcpDelegatingCacheLoader
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4020124#4020124
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4020124
19Â years, 2Â months