Hi. I'm trying to select node from xml with below structure
I tryed:
Any ideas?
Is there way to ignore attributes when i select node?
How I should select <name> node?code:
<hazelcast
xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.3.xsd"
xmlns="http://www.hazelcast.com/schema/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<group>
<name>orientdb</name>
<password>orientdb</password>
</group>
</hazelcast>
I tryed:
All of them not working.I can not understand there is the issuecode:
- nsisXML::select '/hazelcast[@xmlns="http://www.hazelcast.com/schema/config"]/network/name'
- nsisXML::select '/hazelcast[@xmlns]/group/name'
- nsisXML::select '/hazelcast/group/name'
Any ideas?
Is there way to ignore attributes when i select node?
Comment