Try two different XmlBlasterConnection:how can one client be subscriber of one xmlBlaster instance and publisher of another xmlBlaster instance?
I think client must specify their xmlBlaster instance at startup.
// add your specific settings here
String[] args1 = { "-hostname", "host1.com", -port", "8089" }
XmlBlasterConnection con1 = new XmlBlasterConnection(args1, true);
// publish ......
String[] args2 = { "-hostname", "host2.com", -port", "9977" }
XmlBlasterConnection con2 = new XmlBlasterConnection(args2, true);
// subscribe ...regards,
Marcel
