2011-10-17 8 views
6

Potrzebuję utworzyć kwerendę xpath, która zwróci wszystko wymienione pod elementem dostępności.Co jest nie tak z zapytaniem XPath w odpowiedzi SOAP

<?xml version="1.0" encoding="UTF-8"?> 
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 
    <soap:Body> 
      <GetAvailableTimesResult xmlns="http://schemas.test.net/x/version2/2007/06/" resultcode="SearchOk"> 
     <Availability> 
     <Result available="true" time="2011-10-17T17:00:00"/> 
     <Result available="true" time="2011-10-17T17:15:00"/> 
     <Result available="true" time="2011-10-17T17:30:00"/> 
     <Result available="true" time="2011-10-17T17:45:00"/> 
     <Result available="true" time="2011-10-17T18:00:00"/> 
     <Result available="true" time="2011-10-17T18:15:00"/> 
     <Result available="true" time="2011-10-17T18:30:00"/> 
     <Result available="true" time="2011-10-17T18:45:00"/> 
     <Result available="true" time="2011-10-17T19:00:00"/> 
     <Result available="true" time="2011-10-17T19:15:00"/> 
     <Result available="true" time="2011-10-17T19:30:00"/> 
     <Result available="true" time="2011-10-17T19:45:00"/> 
     <Result available="true" time="2011-10-17T20:00:00"/> 
     <Result available="true" time="2011-10-17T20:15:00"/> 
     <Result available="true" time="2011-10-17T20:30:00"/> 
     <Result available="true" time="2011-10-17T20:45:00"/> 
     <Result available="true" time="2011-10-17T21:00:00"/> 
     <Result available="true" time="2011-10-17T21:15:00"/> 
     <Result available="true" time="2011-10-17T21:30:00"/> 
     <Result available="true" time="2011-10-17T21:45:00"/> 
     <Result available="true" time="2011-10-17T22:00:00"/> 
     <Result available="true" time="2011-10-17T22:15:00"/> 
     <Result available="true" time="2011-10-17T22:30:00"/> 
      </Availability> 
       </GetAvailableTimesResult> 
     </soap:Body> 
</soap:Envelope> 

mojej kwerendy XPath zwraca komunikat o błędzie zniekształcone XPath wyrażenie, zapytanie jest w następujący sposób:

//xsi:[soap:body]//Availability 

Odpowiedz

14

Musisz określić prefiks dla http://schemas.livebookings.net/Ingrid/version2/2007/06/ nazw w silniku, np XPath Przedrostek a, a następnie:

//a:Availability 

Będzie wybrać a:Availability element.

Albo można użyć tego XPath:

//*[local-name() = 'Availability'] 
1

Trzeba utworzyć kwerendę XPath wróci wszystko wymienione pod elementu obłożenia

Korzystając:

/*/Soap:Body/x:GetAvailableTimesResult/x:Availability/node() 

Gdzie w swoim programie przypisano (zarejestrowany) prefiks "x" z przestrzenią nazw "http://schemas.livebookings.net/Ingrid/version2/2007/06/".

To jest najczęściej zadawane pytania w XPath.

Wyszukaj "domyślną przestrzeń nazw XPath", aby uzyskać bardziej szczegółowe wyjaśnienie.

0

Dzięki @Kirill Poliszczuk

Jednakże, jeśli chcesz, aby wyodrębnić tylko jedną wartość z listy, można zrobić:

//*[local-name() = 'Availability'][position()=1] 

lub do ostatniego:

//*[local-name() = 'Availability'][last()] 
0

Musisz podać poprawny obszar nazw w swoim XPath. Nadzieja na blok kodu pomoże ci.

v_Value := DBMS_XMLDOM.GetNodeValue(XslProcessor.SelectSingleNode(v_RootNode, '/soap:Envelope/soap:Body/GetLiveAnalysisIDSResponse[1]/AnalysisIDs[1]/guid[1]/text()' 
    ,'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="https://www.dummynet.net/"')); 

Ten kod pracował dla mnie podczas wyodrębniania wartości węzła z odpowiedzi XML protokołu SOAP.