Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


We will also add support for the new SocketFactory option in XML. The SocketFactory can be added using the standard mechanism for declaring classes in Geode's XML - implementing declarable and passing in a provided set of properties

Code Block
<pool>  
  <socket-factory>
    <class-name>com.company.app.CustomSocketFactory</class-name>
     <parameter name="proxyHost">
       <string>proxy.company.com</string>
     </parameter>  
  </socket-factory>
</pool>

...