I've removed thoese jboss cache dist jars from the web-inf/lib as you said,
but the exception is still there:
java.lang.IllegalArgumentException: interface
org.jboss.mx.util.MBeanProxyInstance is not visible from class loader
...
View the original post :
http://www.jboss.com/index.html?modul
Hi Brian ,
Thank you very much!
The error is because I also copied and overided the jboss-j2ee.jar to the
/server/all/lib.
Now it runs! :)
Steven
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3976117#3976117
Reply to the post :
http://www.jboss.com/inde
yes,
:
at $Proxy65.gutObject(Unknown Source)
it should be getObject , I made a mistake when editing the post.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3976071#3976071
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=
Hi Brian,
Thanks for your info.
There's same jboss-cache.jar both under web-inf/lib and server/all/lib, so I
removed the one under web-inf/lib.
Then I got another exception,
java.lang.IllegalArgumentException: interface
org.jboss.mx.util.MBeanProxyInstance is not visible from class loader
Hi there,
I'm using PojoCacheMBean with JBoss AS.
In the deploy\mycache-service.xml, I use the following lines to add the
pojocache service:
In the java code, I use the following lines to get the cache object:
MBeanServer server=MBeanServerLocator.locateJBoss();
| cache_=(PojoCacheMBean)
thanks a lot
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3976031#3976031
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3976031
___
jboss-user mailing list
jboss-user@lists.j
Hi Brian,
Thanks for the quick reply.
Another question is how to get the recursive sub fqn list.
For example, I have
cache.putObject(Fqn.fromString("/a"),null);
cache.putObject(Fqn.fromString("/a/b/c"),null);
cache.putObject(Fqn.fromString("/a/c"),null);
Set set = cache.getChildrenNames(Fqn.fro
Hi I tried this ide, and can create a local cache instance by specifying the
config file.
My question is how to use this IDE tool to monitor the standalone jboss
cache(not run in a jboss server)? Or is this feature supported?
Thanks!
View the original post :
http://www.jboss.com/index.html?
Hi there,
I'm wondering how to get sub fqn list by specifying the parent fqn?
For the following code.
PojoCache cache = BaseCacheManager.getCache();
cache.putObject(new Fqn("a"),null);
cache.putObject(new Fqn("a/b"),null);
cache.putObject(new Fqn("a/c"),null);
Set set1 = cache.getChi