前のトピック: スクリプト サンプル次のトピック: スクリプト条件およびコンテンツ変数


基本的なスクリプトのサンプル

以下の XML サンプルでは、3 つの要求が順番にサブミットされます。 タイムアウト値はスクリプト レベルで指定されます。 独自のタイムアウト値(30,000 ms)を持つ 3 番目の要求を除く、すべての要求に有効です。

<script>sampleone
<attributes>timeout=20000</attributes>
  <request>
    <url>www.aaa.com</url>
  </request>
  <request>
    <url>www.bbb.com</url>
  </request>
  <request>
    <attributes>timeout=30000</attributes>
    <url>www.ccc.com</url>
  </request>
</script>