Given the following xml:
<JUT>
    <DDT>
        <SSG q="textGoal">Lorem ipsum...</SSG>
    </DDT>
    ....
    ...
</JUT>
I am using vtd-xml with XPath in order to retrieve 'textGoal' as follows:
        VTDGen vg = new VTDGen();
        vg.setDoc(xmlContent);
        vg.parse(false);
        VTDNav vn = vg.getNav();
        AutoPilot ap = new AutoPilot(vn);
        int node = 0;
        ap.selectXPath("//SSG[1]/@q");
        node = ap.evalXPath();
        if(node != -1) {
            myString = vn.toString(node);
        }
This gives myString as 'q' and not 'textGoal'. I have two questions:
- What am I doing wrong?
 - I know that 'textGoal' is URL-escaped. Does vtd-xml do URL-UNescape or do I have to do this myself?
 
Regards