History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: CACHE-85
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Lars Torunski
Reporter: Jason Polites
Votes: 0
Watchers: 2
Operations

If you were logged in you would be able to see more operations.
OSCache

upgrade to JavaGroups 2.2.7

Created: 18/May/04 11:42 PM   Updated: 23/Jan/05 04:45 PM
Component/s: Listeners
Affects Version/s: 2.0.2
Fix Version/s: 2.1

Environment:
Processor: Pentium 4 (2GHtz)
OS: Windows XP
IDE: Eclipse 2.1


 Description  « Hide
The com.opensymphony.oscache.plugins.clustersupport.JavaGroupsBroadcastingListener class in OSCache version 2.0.2 references the following classes from JavaGroups:

import org.javagroups.Address;
import org.javagroups.Channel;
import org.javagroups.blocks.NotificationBus;

The current version of JavaGroups (version 2.2.1) does not use this package naming, but rather uses org.jgroups.xxx

Consequently any attempt to use the JavaGroups broadcast listener in OSCache results in abnormal ClassNotFound errors.

The correct import statements should appear as:

import org.jgroups.Address;
import org.jgroups.Channel;
import org.jgroups.blocks.NotificationBus;

 All   Comments   Change History      Sort Order:
Mathias Bogaert - [17/Jul/04 07:23 AM ]
Upgraded to JGroups 2.2.5.