I'm fairly new to xquery so please bear with me as I try to best ask this question.
when i use the following statement (to select a sequence) it works just fine:
let $parts := doc("soap.xml")/soapenv:Envelope/soapenv:Body/ns0:PartDetails/ns0:partName
this loads all elements (as a sequence) into the $parts variable just how i'd like but...
i want to assign the "/ns0:partName" dynamically. I went thru all the Qname functions thinking they'd somehow help but no such luck. after 2 days of struggling i'm hoping one of you can point me in the right direction.