Description
A ClientRegionShortcut is required when connecting a client to an existing region. The list is not very intutive and currently Proxy (the most logical pick for default behavior) doesn't behave as it should in its Javadocs. Regardless, users shouldn't have to read through a list of docs to figure out which ClientRegionShortcut to use when trying to connect to an existing Region on the server.
Create a zero arg constructor:
ClientCache.createClientRegionFactory().create(<region_name>)
Or... even better... take out the createClientRegionFactory() step altogether:
ClientCache.createRegion() which calls .createClientRegionFactory(default shortcut).
This will create a PROXY to an existing region on a server – ie: all behvior happens on the server.