connect - Connecting to multipe Coherence clusters without sharing POF configuration -
i have problem .net application trying connect 2 unrelated coherence clusters via extend. both clusters use own pof configuration. based on research i've done far, solution seems combine both clusters' cache , pof configuration 1 set of coherence xml config files on client. means configurations mixed , force dependency on both clusters: pof objects defined in cluster x must known cluster y , vice versa. dependency unacceptable. there way not mix 2 clusters' configurations leaving them independent , still having .net client connect both? heard using different class loaders connect different clusters may help. if true, how done?
you should able specify pof config use in reomote-cache-scheme serializer, rather in override file global pof config:
<serializer> <instance> <class-name>com.tangosol.io.pof.configurablepofcontext</class-name> <init-params> <init-param> <param-type>string</param-type> <param-value>pof-config.xml</param-value> </init-param> </init-params> </instance> </serializer>
Comments
Post a Comment