Re: [XML-SIG] Using XML Namespaces in XPath Expressions from Python

2005-06-14 Thread JonTom Kittredge
Uche, I have it working now. Thanks for your help! Yours, JonTom JT Kittredge ITA Software, Inc. Cambridge, Massachusetts On 2005-06-13 at 09:33, Uche Ogbuji wrote: > On Mon, 2005-06-13 at 10:29 -0400, JonTom Kittredge wrote: > > Uche, Thanks for your response. My comments

Re: [XML-SIG] Using XML Namespaces in XPath Expressions from Python

2005-06-13 Thread Uche Ogbuji
On Mon, 2005-06-13 at 10:29 -0400, JonTom Kittredge wrote: > Uche, Thanks for your response. My comments are below. > On 2005-06-09 at 06:26, Uche Ogbuji wrote: > > On Wed, 2005-06-08 at 10:27 -0400, JonTom Kittredge wrote: > > > I'm having trouble using PyXML to evaluate XPath expressions that

Re: [XML-SIG] Using XML Namespaces in XPath Expressions from Python

2005-06-13 Thread JonTom Kittredge
Uche, Thanks for your response. My comments are below. On 2005-06-09 at 06:26, Uche Ogbuji wrote: > On Wed, 2005-06-08 at 10:27 -0400, JonTom Kittredge wrote: > > I'm having trouble using PyXML to evaluate XPath expressions that > > include namespace references. > > > > Here is a sample Pyt

Re: [XML-SIG] Using XML Namespaces in XPath Expressions from Python

2005-06-09 Thread Uche Ogbuji
On Wed, 2005-06-08 at 10:27 -0400, JonTom Kittredge wrote: > I'm having trouble using PyXML to evaluate XPath expressions that > include namespace references. > > Here is a sample Python snipped: > > #!/usr/bin/env pystart > > import sys > import xml.dom.minidom > > from xml.xpa

[XML-SIG] Using XML Namespaces in XPath Expressions from Python

2005-06-08 Thread JonTom Kittredge
I'm having trouble using PyXML to evaluate XPath expressions that include namespace references. Here is a sample Python snipped: #!/usr/bin/env pystart import sys import xml.dom.minidom from xml.xpath.Context import Context from xml.xpath import Evaluate from xml.xpath.N