I have below XML
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:partner.soap.sforce.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sf="urn:sobject.partner.soap.sforce.com">
<soapenv:Header>
<LimitInfoHeader>
<limitInfo>
<current>142795</current>
<limit>49754000</limit>
<type>API REQUESTS</type>
</limitInfo>
</LimitInfoHeader>
</soapenv:Header>
<soapenv:Body>
<queryAllResponse>
<result xsi:type="QueryResult">
<done>true</done>
<queryLocator xsi:nil="true"/>
<records xsi:type="sf:sObject">
<sf:type>User</sf:type>
<sf:Id>005030000040AQeAAM</sf:Id>
<sf:Id>005030000040AQeAAM</sf:Id>
</records>
<size>1</size>
</result>
</queryAllResponse>
</soapenv:Body>
</soapenv:Envelope>
I want to get the value of <sf:Id>005030000040AQeAAM</sf:Id> and <size>1</size>. Please help here.
You could use this 2.0 XPath...