Configure a clustered cache from an existing JGroups file

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 1508

This topic has not yet been written. The content below is from the topic description.
Using an external JGroups file If you are configuring your cache programmatically, all you need to do is:   // ... GlobalConfiguration gc = .... Properties p = new Properties(); p.setProperty("configurationFile", "jgroups.xml"); gc.setTransportProperties(p); // ...   and if you happen to use an XML file to configure Infinispan, just use:                                     ...   In both cases above, Infinispan expects jgroups.xml to either be on your classpath or for it to be an absolute path name.