RemoteCacheAttributes attributes = new RemoteCacheAttributes();
attributes.setRemoteHost( "localhost" );
attributes.setLocalPort( 1202 );
attributes.setRemotePort( 1101 );
RemoteCacheManager remoteCacheManager = RemoteCacheManager.getInstance( attributes, compositeCacheManager );
String regionName = "testSinglePut";
AuxiliaryCache cache = remoteCacheManager.getCache( regionName );
// DO WORK
int numPutsPrior = server.getPutCount();
ICacheElement element = new CacheElement( regionName, "key", "value" );
cache.update( element );