Hello,
I'm not sure if this is the right place to raise this "user-related" question.
I'm using Eclipse IDE 1.4 with Eclipse 3.1M5.
I realize that JBoss is way slower when run inside Eclipse (for debugging
purposes) that when it is run outside ouf Eclipse as a regular independant
process. Thi
I added a new JIRA entry as proposed by Ben (JBCACHE-104).
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3868508#3868508
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3868508
--
Mass Removal
Key: JBCACHE-104
URL: http://jira.jboss.com/jira/browse/JBCACHE-104
Project: JBoss Cache
Type: Feature Request
Reporter: fredatwork
Assigned to: Bela Ban
Hello,
I would like to propose to enhance JBossCache API with a mass-removal
Hello,
I would liek to know if there is a way to remove objects from an AOP cache
"massively".
Let's say I entered several objects in an AOP cache :
cache.putObject("/root/1", object1);
| cache.putObject("/root/2", object2);
| .../...
| cache.putObject("/root/999", object999);
|
Now I
Ben,
Good idea to put this the faq.
Could you also explain the functional of region's attribute 'timeToLiveSeconds'
as well ?
Fred
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861281#3861281
Reply to the post :
http://www.jboss.org/index.html?module=bb&
I'd like to raise a functional question about JBossCache eviction policy of an
Aop tree cache, more specifically the max number of nodes inside a region.
Is the maximum nodes of a region of an eviction policy for an aop tree cache:
a/ the maximum number of root nodes you can put in the cache, t
[
http://jira.jboss.com/jira/browse/JBCACHE-34?page=comments#action_12314482 ]
fredatwork commented on JBCACHE-34:
---
Please reject this issue. The problem is due to JBoss 4.0.0 class loader that
is buggy. The problem disapears with JBoss 4.0.1. The
I figured out my problem was due to JBoss 4.0.0 which class loader is buggy.
I installed JBoss 4.0.1 and the problem disapeared.
I aslo realized that JBoss 4.0.0 has real trouble with its class loading
mechanism. It is obviously fixed with JBoss 4.0.1.
Fred
View the original post :
http://
[ http://jira.jboss.com/jira/browse/JBCACHE-34?page=history ]
fredatwork updated JBCACHE-34:
--
Attachment: build.xml
Updated build.xml file that provides the "compile-client" target.
> Unexpected ClassNotFoundException and replSync-service.xml
[ http://jira.jboss.com/jira/browse/JBCACHE-34?page=history ]
fredatwork updated JBCACHE-34:
--
Attachment: testcache.zip
Test case (Eclipse project)
> Unexpected ClassNotFoundException and replSync-service.xml redeploym
[ http://jira.jboss.com/jira/browse/JBCACHE-34?page=history ]
fredatwork updated JBCACHE-34:
--
Attachment: replSync-service.xml
JBossCache service config file
> Unexpected ClassNotFoundException and replSync-service.xml redeploym
(running on Windows XP SP2)
Reporter: fredatwork
Assigned to: Bela Ban
I'm running JBoss 4.0.0 with default configuration.
In order to enable JBossCache (and JBoss AOP) in default configuration, I copied
- ${JBOSS_HOME}/server/all/lib/jboss-cache.jar into
${JBOSS_HOME}/server/defaul
Hi Ben,
Thanks for your proposal. It's nice from you.
I've built a very small test case for you.
How can I mail it to you with proper instructions ?
My email is [EMAIL PROTECTED]
Happy new year !
Fred
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860321#
I fail putting an object in the JBossCache from within a session bean.
I'm using JBoss AS 4.0.0.
The object I want to put in the cache is created (instance of
com.rubis.app.runtime.programs.SignalProgramCache) in memory. However, I fail
putting it in the cache because I get a ClassNotFoundExcep
I'm wondering what version of JBossCache runs with JBoss AS 4.0.0. I'm also
looking for source code of JBossCache for this exact version.
I run JBoss AS 4.0.0 in the default configuration. I copied the jboss-cache.jar
file from the ${JBOSS_HOME}/all/lib directory to the ${JBOSS_HOME}/default/lib
I need to debug a problem related to JBossCache.
Where can I get the source files of JBossCache being bundled zith JBoss 4.0.0 ?
Fred
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860213#3860213
Reply to the post :
http://www.jboss.org/index.html?module=bb
Ben,
I'm running JBoss AS 4.0.0 (build: CVSTag=JBoss_4_0_0 date=200409200418, says
the startuplog trace).
Actually, I have put an object in the cache. I get the
StringIndexOutOfBoundsException when I attempt to retrieve the object from the
cache. The object has been put successfully in the cac
Thanks for the proposals. I modified the xml file and removed the problems.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860208#3860208
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3860208
-
Hello,
I cannot put an object into my TreeCacheAop from within JBoss. I get a
ClassNoutFoundException with the following message
No ClassLoaders found for: com.rubis.app.runtime.programs.SignalProgramCache
My SignalProgramCache is deployed with an EJB jar inside an EAR file.; it
should be found
Hello,
JBoss cache throws a StringIndexOutOfBounds exception when I attempt to access
to the cache. See below the exception stack.
Method getObject in called on an instance of TreeCacheAopMBean inside qn EJB
ession bean, which then trigger the calls of getObject on an instance of
TreeCacheAop
Hello,
I would like to understand if aop precompilation is required or simply
recommended if you want to put serializable POJOs in a JBoss cache.
I'm running JBoss 4.0.0 with AOP loadtime instrumentation turned off
(EnableTransformer set to false).
I'm wondering if aop precompilation is requi
Hello,
I'm a newbie with JBossCache and JBoss AOP.
I sucessfully set up a jboss aop cache service and accessed the cache inside a
session bean with the following snipet :
MBeanServer server = MBeanServerLocator.locate();
| TreeCacheAopMBean cache = (TreeCacheAopMBean) MBeanProxyExt.create(
|
Hello,
I'm a newbie to JBoss Cache.
I would like to access to the JBoss cache service inside a session bean through
the following code lines (as indicated by a post of this forum):
MBeanServer server = MBeanServerLocator.locate();
| TreeCacheMBean cache = (TreeCacheMBean)
| MBeanProxyExt.c
I found what is wrong. I had to run JBoss 4.0.0 instead of JBoss 4.0.0RC2.
Fred
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859761#3859761
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3859761
Kabir,
I installed the 'injboss' example and built it successfully (running 'ant
deploy-ear-aop').
Hozever, JBoss fails deploying the resulting ear file. It's missing a class
ClassFileFilter :
java.lang.NoClassDefFoundError: org/jboss/util/file/ClassFileFilter
For your information, I'm running
Kabir made a reference to a 'injboss' tutorial.
Where is this tutorial that may help me ? An URL zould be appreciated.
Fred
--->
Hi,
Please take a look at the "injboss" tutorial example for an example of how to
package aop apps to be run in JBoss.
Cheers,
Kabir
View the original post :
26 matches
Mail list logo