<?xml version="1.0"?>
<!-- SecurityClient.xml
     Configures a region as a client region in a Security cache. The 
     region's loader and writer connect to a server listening on port 40404.
-->
<!DOCTYPE cache PUBLIC
  "-//GemStone Systems, Inc.//GemFire Declarative Caching 5.7//EN"
  "http://www.gemstone.com/dtd/cache5_7.dtd">
<cache>
  <pool name="client" subscription-enabled="true">
    <server host="localhost" port="40404"/>
  </pool>
  <region-attributes id="clientAttributes" pool-name="client"/>
  <region name="exampleRegion">
    <region-attributes refid="clientAttributes" scope="local" data-policy="empty">
    </region-attributes>
  </region>
</cache>
