Error: Too many requests. Please try again. x

XPath評価

XMLデータの一致部分を入力式に対して検証して抽出するためのフリーツールです。指定されたパラメータと一致する結果オブジェクトが出力結果ボックスに表示されます。詳細はx-path例を参照してください。

アプリケーションパフォーマンスの問題の根本原因を把握したい場合、Site24x7 APMインサイトを利用します。

Check uptime from 120+ global locations

Mail Delivery Monitoring.

Monitor your SMTP server.

POP/IMAP Server Monitoring.

AI-powered alerts

Microsoft Exchange server monitoring.

Troubleshoot problems relating to mail servers.

Understand external dependencies

Monitor custom components and metrics

XPath Examples

Following are few example xpath expressions and results for the above sample xml data

XPath Expression Description Result
/ Select the document node
/store/chocolates/choco Select all the 'choco' elements, which are the direct children of 'chocolates' node
//name[@no] Select all the 'name' elements with 'no' attribute
/store//snack[last()] Select the last snack element
sum(//price) Select the sum of price element values
string-length(//choco[1]/name) Select the length of the first 'choco' element's name value
//choco[1]/name/text() Select the textual value of first 'choco' element's name
count(/store//choco) Select the count of 'choco' elements