Using latest version .M3.
clientCache = new ClientCacheFactory()
.addPoolLocator( getLocatorUrl(), getLocatorPort() )
.set( "log-level", getLogLevel() )
.create();
ClientRegionFactory<String, PdxInstance> clientRegionFactory =
getClientCache()
.<String,
PdxInstance>createClientRegionFactory(ClientRegionShortcut.PROXY);
Region<String, PdxInstance> region =
clientRegionFactory.create(regionName.getName());
The problem: Region is a instance of internal LocalRegion not ProxyRegion?
When the server region has data, client side region.size() returns 0 and
region.values() returns empty.
What is wrong here that I can't access my server region from the defined client
proxy region?
-Roger