Hi Jack,
In the source XML document, this entry is the default namespace:
> nsmgr.AddNamespace("qd", "http://ww.qad.com/qdoc")
you gave it a prefix. Therefore, when you are providing your XPath query,
you need to provide the prefix:
Change the SelectNodes line to:
nodes =
eResults.SelectNodes("/qd:workOrderReleased/qd:workOrderReleased/qd:partList
", nsmgr)
give that a shot. I'm no expert at XPath, but I've had my fair share of
run-ins with prefixes.
Hope this helps,

Signature
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik
Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
> I have the following xml file (given to me not created by me)
>
[quoted text clipped - 231 lines]
> Thank you
> Jack Colletta
garbage@colletta.com - 26 Dec 2004 12:18 GMT
Thanks Nick,
I will give it a try and let you know.
Jack Colletta - 27 Dec 2004 12:21 GMT
Thanks Nick,
I tried what you said, but I still did not parse the partlist section. I am
finding that working with XML files can be tricky.
> Hi Jack,
>
[quoted text clipped - 250 lines]
> > Thank you
> > Jack Colletta
> I have the following xml file (given to me not created by me)
>
> <?xml version="1.0"?>
> <workOrderReleased
> xmlns="http://www.qad.com/qdoc"
...
> nsmgr.AddNamespace("qd", "http://ww.qad.com/qdoc")
Can you see a typo here?
And use "/qd:workOrderReleased/qd:workOrderReleased/qd:partList" of course.

Signature
Oleg Tkachenko [XML MVP]
http://blog.tkachenko.com
garbage@colletta.com - 27 Dec 2004 13:55 GMT
The only thing I see is that xmlns does not have a prefix and I added
one to the namespace manger called qd... I have been working on this
for a while and I am getting punchy
Nick Malik [Microsoft] - 27 Dec 2004 14:15 GMT
touche'
The URL is misspelled.
> > nsmgr.AddNamespace("qd", "http://www.qad.com/qdoc")

Signature
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik
Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
>
> > I have the following xml file (given to me not created by me)
[quoted text clipped - 9 lines]
> Can you see a typo here?
> And use "/qd:workOrderReleased/qd:workOrderReleased/qd:partList" of course.
garbage@colletta.com - 27 Dec 2004 14:20 GMT
Oleg,
Thanks so much..I owe you one. I can't believe I missed it.
Jack
Jack Colletta - 27 Dec 2004 14:47 GMT
Nick you too, thanks
> Oleg,
> Thanks so much..I owe you one. I can't believe I missed it.
>
> Jack