+ " socket://:7501"
+ " <attribute name='useRemoteLoginAsTunnel'>true</attribute>"
+ "</address>"
+ "</qos></connect>"
+ "</clusternode>";
NodeParser nodeParser = new NodeParser(serverScope, new ClusterNode(
serverScope, new NodeId("avalon"), null), xml);
log.info(nodeParser.getClusterNode().toXml());
Address address = nodeParser.getClusterNode().getNodeInfo()
.getConnectQosData().getAddress();
log.info("Address='" + address.getRawAddress().trim() + "'");
assertEquals("socket://:7501", address.getRawAddress().trim());
assertEquals(true, address.getEnv("useRemoteLoginAsTunnel", false)
.getValue());