active questions tagged xpath - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T05:15:14Zhttp://stackoverflow.com/feeds/tag/xpathhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1937721/getting-only-subsequent-siblings-of-same-type-using-xpath-and-simplexml0getting only subsequent siblings of same type using xpath and simplexmlAnthony2009-12-21T01:12:21Z2009-12-21T03:37:01Z
<p>I need to parse a html definition list like the following:</p>
<pre><code><dl>
<dt>stuff</dt>
<dd>junk</dd>
<dd>things</dd>
<dd>whatnot</dd>
<dt>colors</dt>
<dd>red</dd>
<dd>green</dd>
<dd>blue</dd>
</dl>
</code></pre>
<p>So that I can end up with an associative array like this:</p>
<pre><code>[definition list] =>
[stuff] =>
[0] => junk
[1] => things
[2] => whatnot
[colors] =>
[0] => red
[1] => green
[2] => blue
</code></pre>
<p>I am using <code>DOMDocument -> loadHTML()</code> to import the HTML string into an object and then <code>simplexml_import_dom()</code> to use the simplexml extensions, specifically <code>xpath</code>.</p>
<p>The problem I'm having is with the XPath syntax for querying all <code><dd></code> elements that are consecutive and not broken by a <code><dt></code>.</p>
<p>Since <code><dd></code> elements are not considered children of <code><dt></code> elements, I can't simply loop through a query all <code>dt</code>s and query for all <code>dd</code>s. </p>
<p>So I'm thinking I have to do a query for the first <code>dd</code> sibling of each <code>dt</code> and then all <code>dd</code> siblings of that first <code>dd</code>.</p>
<p>But I'm not clear from the XPath tutorials if this is possible. Can you say "consecutive matching siblings"? Or am I forced to loop through each child of the original <code>dl</code> and move over any <code>dt</code>s and <code>dd</code> as they show up?</p>
http://stackoverflow.com/questions/1937446/xpath-and-hpricot-works-on-some-machines-not-others0XPath and Hpricot -- works on some machines, not others?hopeless2009-12-20T23:12:32Z2009-12-21T00:25:40Z
<p>The following hpricot code successfully extracts the STPeriods in the XML on two of my machines (Vista and an Ubuntu server) but fails on another Ubuntu laptop. All machines have Hpricot v0.82</p>
<p>Any ideas? Totally stumped.</p>
<p>Hpricot code:</p>
<pre><code> (doc/"WeatherFeed/Location/WxShortTerm/STPeriod").each do |ham_forecast|
</code></pre>
<p>XML file</p>
<pre><code><?xml version="1.0" encoding="ISO-8859-1" ?>
<WeatherFeed>
<Location ID="EINN" name="Shannon Airport" state="" country="IE" tz="0" tzname="GMT">
<Astro>
<AstroPeriod Day="WED" Date="2009-12-16" Sunrise="8:41 AM GMT" Sunset="4:20 PM GMT" Moonrise="9:03 AM GMT" Moonset="4:02 PM GMT" MoonIllum="4%" MoonAge="0" MoonPhase="Waxing Crescent Moon" MoonIcon="1"/>
<AstroPeriod Day="THU" Date="2009-12-17" Sunrise="8:42 AM GMT" Sunset="4:20 PM GMT" Moonrise="9:46 AM GMT" Moonset="5:05 PM GMT" MoonIllum="10%" MoonAge="1" MoonPhase="Waxing Crescent Moon" MoonIcon="1"/>
</Astro>
<WxOb StationID="EINN" TempC="7" TempF="45" ApparentC="5" ApparentF="41" DewPointC="6" DewPointF="43" RelativeHumidity="93" WindSpeedKnots="8" WindSpeedMPH="9" WindDirection="320" WindDirectionEng="NW" WindGustKnots="0" WindGustMPH="0" PressureMB="1013" PressureIN="29.88" Wx="Mostly Cloudy" Icon="mcloudyn.gif" Visibility="&gt;10km" VisibilityKM="16.09" VisibilityMI="10" ReportEpoch="1260999000" ReportDate="2009-12-16 21:30 UTC"/>
<WxShortTerm ID="EINN">
<STPeriod interval="1" Epoch="1261018800" Day="Thu" Date="2009-12-17" Time="03:00" Wx="Overcast" Icon="cloudyn.gif" TempC="6" TempF="42" Pop="0" QPFmm="0" QPFin="0" DewPointC="4.4" DewPointF="40" RelativeHumidity="92" WindSpeedKnots="12" WindSpeedMPH="14" WindDirectionEng="NE"/>
<STPeriod interval="2" Epoch="1261029600" Day="Thu" Date="2009-12-17" Time="06:00" Wx="Mostly Cloudy" Icon="mcloudyn.gif" TempC="4" TempF="39" Pop="0" QPFmm="0" QPFin="0" DewPointC="3" DewPointF="37" RelativeHumidity="93" WindSpeedKnots="11" WindSpeedMPH="13" WindDirectionEng="NE"/>
<STPeriod interval="3" Epoch="1261040400" Day="Thu" Date="2009-12-17" Time="09:00" Wx="Partly Cloudy" Icon="pcloudy.gif" TempC="2" TempF="36" Pop="0" QPFmm="0" QPFin="0" DewPointC="1.4" DewPointF="35" RelativeHumidity="95" WindSpeedKnots="10" WindSpeedMPH="12" WindDirectionEng="NE"/>
<STPeriod interval="4" Epoch="1261051200" Day="Thu" Date="2009-12-17" Time="12:00" Wx="Partly Cloudy" Icon="pcloudy.gif" TempC="4" TempF="38" Pop="0" QPFmm="0" QPFin="0" DewPointC="1.6" DewPointF="35" RelativeHumidity="87" WindSpeedKnots="12" WindSpeedMPH="14" WindDirectionEng="NE"/>
<STPeriod interval="5" Epoch="1261062000" Day="Thu" Date="2009-12-17" Time="15:00" Wx="Mostly Cloudy" Icon="mcloudy.gif" TempC="3" TempF="37" Pop="0" QPFmm="0" QPFin="0" DewPointC="1" DewPointF="34" RelativeHumidity="87" WindSpeedKnots="12" WindSpeedMPH="14" WindDirectionEng="NE"/>
<STPeriod interval="6" Epoch="1261072800" Day="Thu" Date="2009-12-17" Time="18:00" Wx="Mostly Cloudy" Icon="mcloudyn.gif" TempC="3" TempF="37" Pop="0" QPFmm="0" QPFin="0" DewPointC="0.9" DewPointF="34" RelativeHumidity="89" WindSpeedKnots="12" WindSpeedMPH="14" WindDirectionEng="NE"/>
<STPeriod interval="7" Epoch="1261083600" Day="Thu" Date="2009-12-17" Time="21:00" Wx="Mostly Cloudy" Icon="mcloudyn.gif" TempC="2" TempF="36" Pop="0" QPFmm="0" QPFin="0" DewPointC="0.2" DewPointF="32" RelativeHumidity="88" WindSpeedKnots="11" WindSpeedMPH="13" WindDirectionEng="NE"/>
<STPeriod interval="8" Epoch="1261094400" Day="Fri" Date="2009-12-18" Time="00:00" Wx="Partly Cloudy" Icon="pcloudyn.gif" TempC="-0" TempF="32" Pop="0" QPFmm="0" QPFin="0" DewPointC="-2.1" DewPointF="28" RelativeHumidity="87" WindSpeedKnots="10" WindSpeedMPH="11" WindDirectionEng="NE"/>
</WxShortTerm>
</Location>
</WeatherFeed>
</code></pre>
http://stackoverflow.com/questions/1936301/can-i-use-xpath-2-0-with-firefox-and-selenium0Can I use xpath 2.0 with firefox and selenium?Paul Biggar2009-12-20T16:41:46Z2009-12-20T22:55:48Z
<p>I saw other questions referring to xpath 2.0, which apparently simplifies string expressions. I'm using Firefox 3.5.5 and selenium 1.0.1.</p>
<ul>
<li>How can I check if my versions of Firefox and Selenium support it?</li>
<li>Does Selenium defer to Firefox's built-in Xpath implementation?</li>
<li>In that case, if I start using another (perhaps older) browser with selenium, will I run into problems by expecting xpath 2.0?</li>
</ul>
http://stackoverflow.com/questions/1937115/dynamically-updating-rdf-file1Dynamically updating RDF FileDavid2009-12-20T21:26:24Z2009-12-20T22:16:31Z
<p>Is it possible to update an rdf file dynamically from user generated input through a webform? The exact scenario would beskos concept definitions being created and updated through user input to html forms.</p>
<p>I was considering xpath but is there a better / generally accepted / best practice way of doing this kind of thing?</p>
http://stackoverflow.com/questions/1928293/is-it-possible-to-fix-the-problem-in-htmlagilitypack-when-there-is-a-not-closed-h1is it possible to fix the problem in HtmlAgilityPack when there is a not closed html tag?Karim2009-12-18T13:49:36Z2009-12-20T15:37:22Z
<p>well i have the following problem.<br>
the html i have is malformed and i have problems with selecting nodes using html agility pack when this is the case.<br>
the code is below:</p>
<pre><code>string strHtml = @"
<html>
<div>
<p><strong>Elem_A</strong>String_A1_2 String_A1_2</p>
<p><strong>Elem_B</strong>String_B1_2 String_B1_2</p>
</div>
<div>
<p><strong>Elem_A</strong>String_A2_2 <String_A2_2> asdas</p>
<p><strong>Elem_B</strong>String_B2_2 String_B2_2</p>
</div>
</html>";
HtmlAgilityPack.HtmlDocument objHtmlDocument = new HtmlAgilityPack.HtmlDocument();
objHtmlDocument.LoadHtml(strHtml);
HtmlAgilityPack.HtmlNodeCollection colnodePs = objHtmlDocument.DocumentNode.SelectNodes("//p");
List<string> lststrText = new List<string>();
foreach (HtmlAgilityPack.HtmlNode nodeP in colnodePs)
{
lststrText.Add(nodeP.InnerHtml);
}
</code></pre>
<p>the problem is that String_A2_2 is enclosed in brackets.<br>
so htmlagility pack returns 5 strings instead of 4 in the lststrText.<br>
so is it possible to let htmlagility pack return element 3 as
<code>"<strong>Elem_A</strong>String_A2_2 <String_A2_2> asdas"</code>?<br>
or maybe i can do some preprocessing to close the element?<br>
the current content of lststrText is </p>
<pre><code>lststrText[0] = "<strong>Elem_A</strong>String_A1_2 String_A1_2"
lststrText[1] = "<strong>Elem_B</strong>String_B1_2 String_B1_2"
lststrText[2] = ""
lststrText[3] = ""
lststrText[4] = "<strong>Elem_B</strong>String_B2_2 String_B2_2"
</code></pre>
http://stackoverflow.com/questions/1934720/xpath-builder-in-python2Xpath builder in PythonPaul Biggar2009-12-20T03:11:02Z2009-12-20T14:49:30Z
<p>I'm building relatively complicated xpath expressions in Python, in order to pass them to selenium. However, its pretty easy to make a mistake, so I'm looking for a library that allows me to build the expressions without messing about with strings. For example, instead of writing</p>
<pre><code>locator='//ul[@class="comment-contents"][contains(., "West")]/li[contains(., "reply")]
</code></pre>
<p>I could write something like:</p>
<pre><code>import xpathbuilder as xpb
locator = xpb.root("ul")
.filter(attr="class",value="comment-contents")
.filter(xpb.contains(".", "West")
.subclause("li")
.filter(xpb.contains (".", "reply"))
</code></pre>
<p>which is maybe not as readable, but is less error-prone. Does anything like this exist?</p>
http://stackoverflow.com/questions/1929092/performing-a-group-by-query-in-xpath-xsl0Performing a "Group By" query in XPath XSLCraftyFella2009-12-18T16:05:36Z2009-12-20T12:55:46Z
<p>Hi,</p>
<p>Given the following XML:</p>
<pre><code><results name="queryResults">
<int name="intfield1:[* TO 10]">11</int>
<int name="intfield2:[10 TO 20]">9</int>
<int name="intfield1:[10 TO 20]">12</int>
</results>
</code></pre>
<p>I would like to produce this XML:</p>
<pre><code><results>
<field name="numberfield1">
<value name="[* TO 10]">11</value>
<value name="[10 TO 10]">12</value>
</field>
<field name="numberfield2">
<value name="[10 TO 20]">9</value>
</field>
</results>
</code></pre>
<p>I can't think how to do this in XSL mainly because i'm wanting to Group by the numbericfield.. All i can come up with is this:</p>
<pre><code><xsl:if test="count(results/int) &gt; 0">
<results>
<xsl:for-each select="results/int">
<field>
<xsl:attribute name="name">
<xsl:value-of select="substring-before(@name, ':')"/></xsl:attribute>
<value>
<xsl:attribute name="name">
<xsl:value-of select="substring-after(@name, ':') "/>
</xsl:attribute>
<xsl:value-of select="."/>
</value>
</field>
</xsl:for-each>
</results>
</xsl:if>
</code></pre>
<p>However this doesn't produce the nice grouped list instead i get this:</p>
<pre><code><results>
<field name="numberfield1">
<value name="[* TO 10]">11</value>
</field>
<field name="numberfield2">
<value name="[10 TO 20]">9</value>
</field>
<field name="numberfield1">
<value name="[10 TO 10]">12</value>
</field>
</results>
</code></pre>
<p>If someone can stear me in the right direction.. That would be great?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1935111/is-there-a-compressed-representation-of-xpath1Is there a compressed representation of Xpath?Paras Chopra2009-12-20T07:20:51Z2009-12-20T07:48:56Z
<p>I am working on a project which requires working with XPath (on HTML). The (multiple) XPath is transferred to client-side inside JavaScript. Since XPath strings are long, I was wondering if there is a shorter representation which is equivalent to XPath? Perhaps one which works sort of like huffman encoding but specific to XPath.</p>
http://stackoverflow.com/questions/1934019/javascript-document-evaluate-problem0JavaScript: document.evaluate() problemErepb2009-12-19T20:19:51Z2009-12-19T23:14:19Z
<p>I am trying to get all objects but it doesn't work.</p>
<pre><code>var tmp = document.evaluate("//tr", document, null, XPathResult.ANY_TYPE, null);
</code></pre>
<p><code>tmp.iterateNext</code> returns me null;</p>
http://stackoverflow.com/questions/1606995/xpath-in-biztalk-returns-concatenated-string-values-want-elements-and-values0XPath in Biztalk returns concatenated string values. Want Elements AND ValuesFairyLiquid2009-10-22T12:54:54Z2009-12-19T00:00:01Z
<p>I have a message which looks like this for example, but could have many more invoices contained within it:</p>
<pre><code><ns1:InvoicesEnvelope xmlns:ns1="http://Test.Schemas.InvoiceEnvelope_1"xmlns:ns0="http://Test.Schemas.Invoices">
<Invoices>
<ns0:Invoice>
<Header>
<BatchID>1311</BatchID>
<InvoiceNo>3400055151</InvoiceNo>
<CustomerName>CUSNAME1</CustomerName>
<TotalInvoiceLines>2</TotalInvoiceLines>
</Header>
<Lines>
<Line>
<TaxCode>S15</TaxCode>
<InvoiceAmt>12.77</InvoiceAmt>
</Line>
<Line>
<TaxCode>S15</TaxCode>
<InvoiceAmt>1.92</InvoiceAmt>
</Line>
</Lines>
</ns0:Invoice>
<ns0:Invoice>
<Header>
<BatchID>1311</BatchID>
<InvoiceNo>3400055152</InvoiceNo>
<CustomerName>CUSNAME2</CustomerName>
<TotalInvoiceLines>2</TotalInvoiceLines>
</Header>
<Lines>
<Line>
<TaxCode>S15</TaxCode>
<InvoiceAmt>12.77</InvoiceAmt>
</Line>
<Line>
<TaxCode>S15</TaxCode>
<InvoiceAmt>1.92</InvoiceAmt>
</Line>
</Lines>
</ns0:Invoice>
</Invoices>
</ns1:InvoicesEnvelope>
</code></pre>
<p>All I want to do is get the 2nd Invoice from the original message using xpath</p>
<p>Here is my Xpath:</p>
<pre><code>msgInvoice = xpath(msgInvoicesEnvelope, "string (//ns1:InvoicesEnvelope/Invoices/ns0:Invoice[position() = 2])”);
</code></pre>
<p>All it returns though are the actual string values concatenated together like so:</p>
<pre><code>13113400055152CUSNAME22S1512.77S151.92
</code></pre>
<p>What I want is the element tags aswell so it can be put into a new single invoice message. This is what I expect to get:</p>
<pre><code><ns0:Invoice>
<Header>
<BatchID>1311</BatchID>
<InvoiceNo>3400055152</InvoiceNo>
<CustomerName>CUSNAME2</CustomerName>
<TotalInvoiceLines>2</TotalInvoiceLines>
</Header>
<Lines>
<Line>
<TaxCode>S15</TaxCode>
<InvoiceAmt>12.77</InvoiceAmt>
</Line>
<Line>
<TaxCode>S15</TaxCode>
<InvoiceAmt>1.92</InvoiceAmt>
</Line>
</Lines>
</ns0:Invoice>
</Invoices>
</code></pre>
<p>What am I doing wrong? This has been bugging me now for nearly 2 days…..</p>
http://stackoverflow.com/questions/1759672/selecting-comments-by-their-inner-xml-in-xpath-xsl2Selecting Comments by their inner xml in xpath/xslCraftyFella2009-11-18T22:40:11Z2009-12-18T23:14:09Z
<p>Hi,</p>
<p>Given the following xml document</p>
<pre><code><root>
<childnode0/>
<childnode2/>
<!--Comment1-->
<childnode3/>
<childnode4/>
<!--Comment2-->
</root>
</code></pre>
<p>I know the xpath to select all the comments at a particular level in xsl</p>
<pre><code>string xPath = "/root/comment()";
</code></pre>
<p>However i'd like to select a comment where the inner xml is "Comment2".</p>
<p>Any ideas?</p>
<p>Thanks</p>
<p>Dave</p>
http://stackoverflow.com/questions/1929089/another-question-about-getting-entries-from-stackoverflow-atom-feed0another question about getting entries from StackOverflow atom feedPurple Ant2009-12-18T16:05:26Z2009-12-18T18:45:03Z
<p>I feel like an idiot for asking this question again, as I know it's been <a href="http://stackoverflow.com/questions/501171/no-nodes-selected-from-atom-xml-document-using-xpath">asked</a> <a href="http://stackoverflow.com/questions/24734/selectnodes-not-working-on-stackoverflow-feed">several</a> times. I cannot for the life of me get this code working even with the answers that have already been provided, so I'm hoping that by offering my current code, someone can help me determine where I'm going wrong:</p>
<pre><code> Dim RSSReader As New Xml.XmlTextReader("http://stackoverflow.com/feeds")
Dim RSSDoc As New Xml.XmlDocument()
Dim NSMgr As New Xml.XmlNamespaceManager(RSSDoc.NameTable)
NSMgr.AddNamespace("atom", "http://www.w3.org/2005/Atom")
RSSDoc.Load(RSSReader.GetRemainder())
RSSReader.Close()
For Each Node As Xml.XmlNode In RSSDoc.SelectNodes("atom:entry", NSMgr)
AddAtomMessage(Account, Node)
Next
</code></pre>
<p>Based on the above code the "AddAtomMessage" method never gets executed as no nodes are returns by "SelectNodes" on the For/Each line.</p>
http://stackoverflow.com/questions/1929772/why-doesnt-domxpath-work1Why doesn't DOMXPath work?SoaperGEM2009-12-18T17:58:01Z2009-12-18T18:28:58Z
<p>I've been trying to write a PHP script to parse an XML document using <a href="http://php.net/manual/en/class.domxpath.php" rel="nofollow">DOMXPath</a>; however it seems I'm missing something because none of my XPath queries are returning anything. So I've tried to water down my script to try and parse a very rudimentary XML document, and that's not working either. I've based this script off of <a href="http://www.w3schools.com/XPath/xpath%5Fexamples.asp" rel="nofollow">this XPath example</a>.</p>
<pre><code><?php
$xml = '<?xml version="1.0" encoding="ISO-8859-1"?>';
$xml .= '<bookstore>';
$xml .= '<book category="COOKING">';
$xml .= '<title lang="en">Everyday Italian</title>';
$xml .= '<author>Giada De Laurentiis</author>';
$xml .= '<year>2005</year>';
$xml .= '<price>30.00</price>';
$xml .= '</book>';
$xml .= '</bookstore>';
$dom = new DOMDocument('1.0');
$dom->loadXML($xml);
$xpath = new DOMXPath($dom);
$result = $xpath->query('/bookstore/book[1]/title');
var_dump($result);
?>
</code></pre>
<p>Problem is that my var_dump of $result <em>always</em> returns something like:</p>
<pre><code>object(DOMNodeList)#4 (0) { }
</code></pre>
<p>...indicating that it found nothing.</p>
http://stackoverflow.com/questions/1925778/xpath-searching-for-descendent-elements-that-a-match-a-filter-and-b-dont-ha1XPath - Searching for descendent elements that a) match a filter and b) don't have a specific ancestor.andre_b2009-12-18T01:39:04Z2009-12-18T18:17:48Z
<p>Hi, </p>
<p>I'm trying to get an XPath expression together that will give me all the descendent elements of a node that match a filter (e.g. [contains(@class,"interesting")] but which don't have a specific ancestor e.g. [contains(@class,"frame")]. Probably best explained by example:</p>
<pre><code> <div class="frame">
<p class="interesting">alice</p>
<p class="interesting">bob</p>
<p class="interesting">carol>/p>
<div>
<div>
<h3 class="interesting">david</h3>
</div>
</div>
<div class="frame">
<p class="interesting">drevil</p>
</div>
</div>
</code></pre>
<p>So in this example, I want to be able to match all the "interesting" elements, that are descendents of the first div with class="frame". But I <strong>don't</strong> want the "interesting" elements underneath the nested "frame" div. </p>
<p>Ideally I'd have a single XPath expression that would give me those elements with content alice, bob, carol and david. But not drevil.</p>
<p>It is like the presence of the nested frame occludes that branch of the tree from the search.</p>
<p>Any ideas? All responses much appreciated. </p>
<p><hr></p>
<p>In response to Robert, I have this Python code (though I will utlimately do it browser side):</p>
<pre><code>from lxml import etree
from StringIO import StringIO
testxml = """
<div>
<div class="frame">
<p class="interesting">alice</p>
<p class="interesting">bob</p>
<p class="interesting">carol</p>
<div>
<div>
<h3 class="interesting">david</h3>
</div>
</div>
<div class="frame">
<p class="interesting">drevil</p>
</div>
</div>
</div>
"""
xsl = """
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<output>
<xsl:apply-templates select="//div[@class='frame'][1]/*"/>
</output>
</xsl:template>
<xsl:template match="*">
<xsl:apply-templates select="*"/>
</xsl:template>
<xsl:template match="*[@class='frame']"/>
<xsl:template match="*[@class='interesting']">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
"""
def test_xsl():
xslt_doc = etree.parse(StringIO(xsl))
transform = etree.XSLT(xslt_doc)
doc = etree.parse(StringIO(testxml))
result = transform(doc)
print result
if __name__=="__main__":
test_xsl()
</code></pre>
<p>This gives the following result: </p>
<pre><code><?xml version="1.0"?>
<output>
<p class="interesting">alice</p>
<p class="interesting">bob</p>
<p class="interesting">carol</p>
<h3 class="interesting">david</h3>
<p class="interesting">drevil</p>
</output>
</code></pre>
<p>As you can see drevil is lurking. </p>
<p>Note, Tomalak is correct in that the 2nd match on * has no effect (other than to remove spaces from the output which is a bit odd!).</p>
<p>It just twigged though that I might not be able to go with the XSLT approach, the whole point of doing an XPath query in the first place was to gain references to nodes within the original HTML document. If I do a transform, the nodes contained in the <em>new</em> result document will be copies and not the original ones I'm looking for and thus no use! </p>
<p>This might be the dumbest question ever, but is there a way to maintain a references from nodes in the transformed document to nodes in the original?</p>
<p>Thanks Tomalak, Robert and mykhal for your help so far. I think I just need to buy a book on XSLT... </p>
http://stackoverflow.com/questions/515979/java-xslt-processors-supporting-xpath-2-03Java XSLT processors supporting XPath 2.0Lucas -luky- Noleto2009-02-05T13:57:02Z2009-12-18T15:23:46Z
<p>What are the currently available XSLT processors supporting XPath 2.0 standard?</p>
http://stackoverflow.com/questions/1922211/indexing-over-the-results-returned-by-selenium2Indexing over the results returned by seleniumGuy2009-12-17T14:40:06Z2009-12-18T10:49:17Z
<p>Hi</p>
<p>I try to index over results returned by an xpath. For example:</p>
<pre><code>xpath = '//a[@id="someID"]'
</code></pre>
<p>can return a few results. I want to get a list of them. I thought that doing:</p>
<pre><code>numOfResults = sel.get_xpath_count(xpath)
l = []
for i in range(1,numOfResults+1):
l.append(sel.get_text('(%s)[%d]'%(xpath, i)))
</code></pre>
<p>would work because doing something similar with firefox's Xpath checker works:</p>
<pre><code>(//a[@id='someID'])[2]
</code></pre>
<p>returns the 2nd result.</p>
<p>Ideas why the behavior would be different and how to do such a thing with selenium
Thanks</p>
http://stackoverflow.com/questions/1927033/what-is-wrong-with-this-xsd0What is wrong with this xsd?Johan2009-12-18T08:36:59Z2009-12-18T08:43:54Z
<p>The following XSD should validate that the <code>favorite_fruit</code> element's <code>name</code> attribute should only contain <code>names</code> of <code>fruit</code> in the <code>fruits</code> element. Here is the XSD:</p>
<pre><code><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="Fruit">
<xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="FruitArray">
<xsd:sequence>
<xsd:element name="fruit" minOccurs="0" maxOccurs="unbounded" type="Fruit"/>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="fruit_basket">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="fruits" minOccurs="1" maxOccurs="1" type="FruitArray"/>
<xsd:element name="favourite_fruit" minOccurs="1" maxOccurs="1">
<xsd:complexType>
<xsd:attribute name="name" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:key name="fruit_lookup">
<xsd:selector xpath="fruits/fruit"/>
<xsd:field xpath="@name"/>
</xsd:key>
<xsd:keyref name="favourite_fruit_constraint" refer="fruit_lookup">
<xsd:selector xpath="favourite_fruit"/>
<xsd:field xpath="@name"/>
</xsd:keyref>
</xsd:element>
</xsd:schema>
</code></pre>
<p>The following xml should be valid but when validated is invalid:</p>
<pre><code><fruit_basket>
<fruits>
<fruit name="Apple"/>
<fruit name="Peach"/>
<fruit name="Bananna"/>
</fruits>
<favourite_fruit name="Apple"/>
</fruit_basket>
</code></pre>
<p>Any ideas? My gut feels is that there is something wrong with my xpath. PS: I am using lxml to validate the xml against the xsd.</p>
http://stackoverflow.com/questions/1926418/xpath-expression-matching-several-attributes-for-htmlagilitypack2Xpath expression matching several attributes for HtmlAgilityPackMicMit2009-12-18T05:15:21Z2009-12-18T05:33:24Z
<p>Assuming I want to find a table with certain width and height attributes
No problem with</p>
<pre><code>doc.DocumentNode.SelectSingleNode("//table[@width='500']");
</code></pre>
<p>Would it be possible to add height='500' somehow to this Xpath expression ?</p>
http://stackoverflow.com/questions/1923810/c-xpath-problem0C# XPath problemunknown (google)2009-12-17T18:53:38Z2009-12-17T19:06:19Z
<p>When you run the following code, StatusCode is returned as null.
What am I doing wrong?</p>
<pre><code> var xml = @"<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://earth.google.com/kml/2.0'>
<Response>
<name>The Name</name>
<Status>
<code>200</code>
<request>geocode</request>
</Status>
</Response>
</kml>";
XmlDocument XmlDoc = new XmlDocument();
ASCIIEncoding Enc = new System.Text.ASCIIEncoding();
using (MemoryStream Stream = new MemoryStream(Enc.GetBytes(xml)))
{
XmlDoc.Load(Stream);
}
XmlElement Root = XmlDoc.DocumentElement;
XmlNamespaceManager XmlNS = new XmlNamespaceManager(XmlDoc.NameTable);
XmlNS.AddNamespace("default", Root.NamespaceURI);
XmlNode XmlResults = Root.SelectSingleNode("//default:Response", XmlNS);
XmlNode StatusCode = XmlResults.SelectSingleNode("Status/code");
</code></pre>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1880109/biztalk-server-problem2BizTalk server problemWtFudgE2009-12-10T10:35:01Z2009-12-17T11:21:50Z
<p>Hi, we have a biztalk server (a virtual one (1!)...) at our company, and an sql server where the data is being kept.
Now we have a lot of data traffic. I'm talking about hundred of thousands. So I'm actually not even sure if one server is pretty safe, but our company is not that easy to convince.</p>
<p>Now recently we have a lot of problems. </p>
<p>Allow me to situate in detail, so I'm not missing anything:</p>
<p>Our server has 5 applications:</p>
<ul>
<li>One with 3 orchestrations, 12 send ports, 16 receive locations.</li>
<li>One with 4 orchestrations, 32 send ports, 20 receive locations.</li>
<li>One with 4 orchestrations, 24 send ports, 20 receive locations.</li>
<li>One with 47 (yes 47) orchestrations, 37 send ports, 6 receive locations.</li>
<li>One with common application with a couple of resources.</li>
</ul>
<p>Our problems have occured since we deployed the applications with the 47 orchestrations.
A lot of these orchestrations use assign shapes which use c# code to do the mapping. This is because we use HL7 extensions and this is kind of special, so by using c# code & xpath it was a lot easier to do the mapping because a lot of these schema's look alike. The c# reads in XmlNodes received through xpath, and returns XmlNode which are then assigned again to biztalk messages. I'm not sure if this could be the cause, but I thought I'd mention it.</p>
<p>The send and receive ports have a lot of different types: File, MQSeries, SQL, MLLP, FTP.
Each of these types have a different host instances, to balance out the load.
Our orchestrations use the BiztalkApplication host.</p>
<p>On this server also a couple of scripts are running, mostly ftp upload scripts & also a zipper script, which zips files every half an hour in a daily zip and deletes the zip files after a month. We use this zipscript on our backup files (we backup a lot, backups are also on our server), we did this because the server had problems with sending files to a location where there were a lot (A LOT) of files, so after the files were reduced to zips it went better.</p>
<p>Now the problems we are having recently are mainly two major problems:</p>
<ul>
<li>Our most important problem is the following. We kept a receive location with a lot of messages on a queue for testing. After we start this receive location which uses the 47 orchestrations, the running service instances start to sky rock. Ok, this is pretty normal. Let's say about 10000, and then we stop the receive location to see how biztalk handles these 10000 instances. Normally they would go down pretty fast, and it does sometimes, but after a while it starts to "throttle", meaning they just stop being processed and the service instances stay at the same number, for example in 30 seconds it goes down from 10000 to 4000 and then it stays at 4000 and it lowers very very very slowly, like 30 in 5minutes or something. So this means, that all the other service instances of the other applications are also stuck in here, and they are also not processed. </li>
</ul>
<p>We noticed that after restarting our host instances the instance number went down fast again. So we tried to selectively restart different host instances to locate the problem. We noticed that eventually restarting the file send/receive host instance would do the trick. So we thought file sends would be the problem. Concidering that we make a lot of backups. So we replaced the file type backups with mqseries backups. The same problem occured, and funny thing, restarting the file send/receive host still fixes the problem.</p>
<p>No errors can be found in the event viewer either.</p>
<ul>
<li>A second problem we're having is. That sometimes at arround 6 am, all or a part of the host instances are being stopped.</li>
</ul>
<p>In the event viewer we noticed the following errors (these are more than one):</p>
<blockquote>
<p>The receive location "MdnBericht SQL" with URL "SQL://ZNACDBPEG/mdnd0001/" is shutting down. Details:"The error threshold has been exceeded. The receive location is shutting down.".</p>
<p>The Messaging Engine failed to add a receive location "M2m Othello Export Start Bestand" with URL "\m2mservices\Othello_import$\DataFilter Start*.xml" to the adapter "FILE". Reason: "The FILE adapter cannot access the folder \m2mservices\Othello_import$\DataFilter Start.
Verify this folder exists.
Error: Logon failure: unknown user name or bad password.
".</p>
<p>The FILE adapter cannot access the folder \m2mservices\Othello_import$\DataFilter Start.
Verify this folder exists.
Error: Logon failure: unknown user name or bad password.</p>
<p>An attempt to connect to "BizTalkMsgBoxDb" SQL Server database on server "ZNACDBBTS" failed.
Error: "Login failed for user ''. The user is not associated with a trusted SQL Server connection."</p>
</blockquote>
<p>It woould seem that there's a login failure at this time and that because of it other services are also experiencing problems, and eventually they are shut down.</p>
<p>The thing is, our user is admin, and it's impossible that it's password is wrong "sometimes". We have concidering that the problem could be due to an infrastructure problem, but that's not really are department.</p>
<p>I know it's a long post, but we're not sure anymore what to do. Would adding another server and balancing the load solve our problems? Is there a way to meassure our balance and know where to start splitting? What are normal numbers of load etc?</p>
<p>I appreciate any answers because these issues are getting worse and we're also on a deadline. </p>
<p>Thanks a lot for replies!</p>
http://stackoverflow.com/questions/1919224/why-is-xpathnavigator-case-sensitive0Why is XPathNavigator case sensitive?voltagex2009-12-17T03:09:59Z2009-12-17T03:25:47Z
<pre><code>XPathNavigator navigator = myApp.XML.CreateNavigator();
XPathExpression expression = navigator.Compile("true"); //works
XPathExpression expression = navigator.Compile("true or true"); //works
XPathExpression expression = navigator.Compile("true OR true) //'System.Xml.XPath.XPathException'
</code></pre>
http://stackoverflow.com/questions/1909416/how-can-i-bind-parent-child-comboboxs-against-xml-datasource0How can I bind parent/child ComboBox's against XML datasource?Brett Ryan2009-12-15T18:29:21Z2009-12-16T21:33:17Z
<p>I have the following XML (simplified example) which should have a parent/child relationship between two <code>ComboBox</code>'s. The parent binds correctly but the child does not bind to the parents <code>SelectedItem</code>.</p>
<p>When I set <code>xmlns</code> against the <code>foobar</code> XML and remove all namespace references it works as expected. Also if I set <code>ItemsSource="{Binding XPath=fb:foo/fb:bars/fb:bar}"</code> against <code>comboBar</code> it finds all the <code>bar</code> nodes as expected from both <code>foo</code> elements.</p>
<p><em>EXAMPLE (tested to work in XamlPad)</em></p>
<pre><code><Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Page.Resources>
<XmlDataProvider x:Key="foobarSource" XPath="fb:foobar">
<XmlDataProvider.XmlNamespaceManager>
<XmlNamespaceMappingCollection>
<XmlNamespaceMapping
Prefix="fb" Uri="http://foo.bar/1.0/foobar.xsd"/>
</XmlNamespaceMappingCollection>
</XmlDataProvider.XmlNamespaceManager>
<x:XData>
<foobar xmlns="http://foo.bar/1.0/foobar.xsd">
<foo name="Foo 1">
<bars name='bars 1'>
<bar name="first"/>
<bar name="second"/>
</bars>
</foo>
<foo name="Foo 2">
<bars name='bars 2'>
<bar name="third"/>
<bar name="fourth"/>
</bars>
</foo>
</foobar>
</x:XData>
</XmlDataProvider>
<DataTemplate x:Key="comboTemplate">
<TextBlock Text="{Binding XPath=@name}" />
</DataTemplate>
</Page.Resources>
<StackPanel DataContext="{StaticResource foobarSource}">
<ComboBox Width="150" x:Name="comboFoo"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding XPath=fb:foo}"
ItemTemplate="{StaticResource comboTemplate}"/>
<ComboBox Width="150" x:Name="comboBar"
IsSynchronizedWithCurrentItem="True"
DataContext="{Binding SelectedItem, ElementName=comboFoo}"
ItemsSource="{Binding XPath=fb:bars/fb:bar}"
ItemTemplate="{StaticResource comboTemplate}"/>
</StackPanel>
</Page>
</code></pre>
http://stackoverflow.com/questions/1917556/php-eliminate-results-from-an-xml-result-set0PHP - Eliminate results from an XML result setrg882009-12-16T20:43:11Z2009-12-16T21:10:57Z
<p>I think this might be more accurately called "paging"... not sure. I am getting a chunk of XML (lets say 100 nodes) I then want to display only a set number of them at a time on a page. How do you do this?</p>
<p>For reference, in .NET it would be something like this:</p>
<pre><code> // Get some results. These are an XPathExpression
XPathNodeIterator iterate = nav.Select(results);
int index = 0;
// Iterate over them deleting excess results
foreach (XPathNavigator node in iterate) {
if ((index < beginIndex) || (index > finishIndex)) {
node.DeleteSelf();
}
index++;
}
// Set iterate to be this new set of results
iterate = nav.Select(results);
// Write out my new result set
foreach (XPathNavigator node in iterate) {
Response.Write(node.OuterXml);
}
</code></pre>
<p>and that would grab a subset of XML from an XML document, run through it deleting all nodes greater or less than my beginIndex and my finishIndex (so I would grab, say the first 20 results by setting <code>beginIndex = 0</code> and <code>finishIndex = 19</code> and next pass through I could grab nodes 20-29 and so on).</p>
<p>In a nutshell, in PHP, how do you delete the unwanted nodes like that bit that says <code>node.DeleteSelf</code>? Everything else I can do... just not sure about that delete bit.</p>
http://stackoverflow.com/questions/1914085/xpath-1-0-match-not-empty-elements0XPATH 1.0 : match not empty elementssubtenante2009-12-16T11:29:19Z2009-12-16T16:21:23Z
<p>I need to match elements that contain neither PCDATA nor children elements.</p>
<p>I tried this : </p>
<pre><code>.//myelem[count(nodes())=0]
</code></pre>
<p>but nodes() is unknown in XPATH 1.0.</p>
<p>What is the most concise way that you know of to do this in XPATH 1.0 ?</p>
http://stackoverflow.com/questions/1902399/finding-embedded-namespace-uris2Finding embedded namespace uri's.Craig2009-12-14T17:50:53Z2009-12-16T15:59:18Z
<p>Hi,</p>
<p>Given the following: <br/>You will note that embedded in this xml sample is an Organisation node with its' own namespace declared with xmlns=""</p>
<p>This is declared like this rather than using a prefix.
Is there any way of finding all the namespaces declared in an xml document using xpath?</p>
<p>I have tried a few variations, unfortunately xmlns is not treated like any other attributes of a document (for obvious reasons) and I cannot find a way to get them out using xpath.</p>
<p>//@* does not include them for instance.</p>
<p>I need a list of all the xmlns attributes in the document.</p>
<pre><code><rss version="2.0" xmlns:a10="http://www.w3.org/2005/Atom">
<channel xmlns:media="http://search.yahoo.com/mrss">
<title>Search Results Title</title>
<link>http://acme.co.za/searchResults</link>
<description>Search Results Descrption</description>
<item>
<guid isPermaLink="false">uuid:169d3229-3b99-4647-9791-492bbbf4c419/PGS0900.PDF</guid>
<link>link</link>
<title>Title</title>
<description>This page...</description>
<media:thumbnail url="..." width="100" height="100"></media:thumbnail>
<Organisation xmlns="http://acme.co.za/MYNAMESPACE" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Name>Volkswagen</Name>
<Business>Kraft-durch-Freude-Wagen</Business>
<Type>Public</Type>
<RegistrationNumber>5908213224080</RegistrationNumber>
</Organisation>
</item>
</channel>
</rss>
</code></pre>
http://stackoverflow.com/questions/1915219/tool-to-find-out-xpath0Tool to find out XPathBurt2009-12-16T15:06:15Z2009-12-16T15:18:37Z
<p>I find XPath difficult to get my head around at times and am looking for a tools that I can point at a line in an xml config file an it will tell me the xpath to the attributes that I need.</p>
<p>Any help with this would be much appreciated></p>
http://stackoverflow.com/questions/1914212/xpath-to-get-only-the-text-from-within-an-element-php0XPath to get only the text from within an element (PHP)Nick2009-12-16T11:52:28Z2009-12-16T12:07:20Z
<p>Hello</p>
<p>Apologies if this has been answered before. </p>
<p>I've been trying to construct an XPath expression to retrieve only the text portion from an element such as this (containing text as well as other elements)</p>
<pre><code>...
<td id="test">
The text I want.
<table>
Things I do not want
.....
.....
</td>
</code></pre>
<p>I haven't been able to find any way to separate "the text I want" from the other content inside the element.</p>
<p>Your help is appreciated.</p>
http://stackoverflow.com/questions/1161576/get-data-from-an-xml-net-dataset-in-php0Get data from an XML .NET DataSet in PHPRob2009-07-21T20:27:52Z2009-12-16T11:29:45Z
<p>I have the following XML from a .NET web service:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<DataSet>
<xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="NewDataSet" msdata:IsDataSet="true">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="Table1">
<xs:complexType>
<xs:sequence>
<xs:element name="GROUP_ID" type="xs:int" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<NewDataSet xmlns="">
<Table1 diffgr:id="Table11" msdata:rowOrder="0" diffgr:hasChanges="inserted">
<GROUP_ID>NUM</GROUP_ID>
</Table1>
</NewDataSet>
</diffgr:diffgram>
</DataSet>
</code></pre>
<p>I need to access just the GROUP_ID node value, but want to know the easiest way to do this. So far I have been using <code>DomDocument</code> and <code>DomXPath</code> to query for that node, but I'm hoping there is a better way that I am missing:</p>
<pre><code>$xml = new DomDocument();
$xml->load('file.xml');
$xp = new DomXPath($xml);
$result = $xp->query('//GROUP_ID');
$id = null;
foreach($result as $node){
$id = $node->nodeValue;
break;
}
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1906857/php-simplexml-with-xpath0PHP SimpleXML with xpathJohannes2009-12-15T11:35:41Z2009-12-16T11:27:23Z
<p>I have a small XML file:</p>
<pre><code><wddxPacket version='1.0'>
<header/>
<data>
<struct type='coldfusion.runtime.ArgumentCollection'>
<var name='HEADLINE'>
<string>Richard Barret's Articles on Leadership and High Performance Organisations</string>
</var>
</struct>
</data>
</wddxPacket>
</code></pre>
<p>I'm trying to use PHP SimpleXML and xpath to extract the value between the string element in the var name HEADLINE element. This code works:</p>
<pre><code>// Location of the XML file on the file system
$file = 'http://10.10.200.37/skins/importscript/41802.xml';
$xml = simplexml_load_file($file);
// CREATE THE ARRAYS FOR EACH XML ELEMENT NEEDED
$title = $xml->xpath('//var[@name="HEADLINE"]');
echo "<p>";
print_r($title);
echo "</p>";
</code></pre>
<p>The problem is that it returns not only the value but also all the array information. As in:</p>
<pre>
Array (
[0] => SimpleXMLElement Object (
[@attributes] => Array (
[name] => HEADLINE
)
[string] => Richard Barret's Articles on Leadership and High Performance Organisations
)
)
</pre>
<p>How can I get it to return just the value and nothing else?</p>
<p>If I replace <code>print_r</code> with <code>echo $title;</code> I get the word Array on the page instead of the value. If I try <code>echo $title[0];</code> I get nothing at all.</p>
<p>I've tried so many things now can't think of anything else! What am I doing wrong? Could anyone point me in the right direction? Thanks!</p>
http://stackoverflow.com/questions/1909584/xpath-to-css-selector1XPath to CSS SelectorNotMyself2009-12-15T18:57:07Z2009-12-16T08:42:13Z
<p>I have the following xpath statement in a selenium test:</p>
<pre><code>//tbody/tr[td/span[text()='IPODate']]/td[4]/input
</code></pre>
<p>It gets what I want but my tests are painfully slow in IE6. Anyone know how I would do the same selector as CSS selectors? I think I understand how to do each of these with exception to the text()="IPODate" part.</p>
<p>As requested here is an example of the table I am trying to select from:</p>
<pre><code><table cellspacing="0" cellpadding="4" border="0" id="tblResearchItems" class="coolTable SingleItem">
<tbody>
</code></pre>
<p>.... many many rows
</p>
<pre><code><td>
<input type="button" value="A" onclick="sA('secm.Company', 'IPODate', 299)" class="RButton NarrowButton2 A Show_N"/>
</td>
<td class="TCN">
<span class="CN">IPODate</span><f/>
</td>
<td>
<g/>
</td>
<td class="TCV VerticalAlign">
<input type="text" value="" onfocus="stLT(); hideLB(true)" onblur="mustBeDate($(this));" class="UpUI_Y date NDD hasDatepicker" id="dp1260909771780"/>
<img class="ui-datepicker-trigger" src="../images/calendar.gif" alt="..." title="..."/> <div/>
</td>
</tr>
</code></pre>
<p>...many many more rows...
</p>
<p>in this example only one row has the IPODate cell.</p>