What you need is a remote method call instead of simple replication. And this feature is not directly related to PojoCache if I am reading your post correctly. Instead, to do RPC, you can do like:
| CacheSPI s = (CacheSPI)pojoCache.getCache(); | RPCManager m = s.getRPCManager(); | m.callRemoteMethods(...); | to see how exactly to invoke the callRemoteMethods, you can look into TreeCache implementation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3980584#3980584 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3980584 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
