Hi,
I'm trying to create a local-cache and a client-cache inside one JVM, however i get the error stated below which i think is occurring due to cache being singleton and you can only create one per JVM.
Does anybody know a good work around? other then doing it pragmatically.
Thanks.
Error:
Error creating bean with name 'ccf': FactoryBean threw exception on object creation; nested exception is java.lang.IllegalStateException: The singleton cache was created by CacheFactory not ClientCacheFactory.
Cache.xml:
<gfe:cache id="localCache"/>
<gfe:client-cache id="ccf" pool-name="gfPool" properties-ref="clientCacheProperties" />
<gfe:pool id="gfPool" subscription-enabled="true" load-conditioning-interval="6000" socket-buffer-size="65535" thread-local-connections="true" read-timeout="6000"
idle-timeout="6000" retry-attempts="-1" ping-interval="5000" max-connections="-1">
<gfe:locator host="127.0.0.1" port="10083" />
</gfe:pool>
<gfe:local-region id="localRegion" cache-ref="localCache"/>
<gfe:client-region id="region" cache-ref="ccf" pool-name="gfPool" name="regionName" shortcut="CACHING_PROXY"/>