<?xml version="1.0" encoding="Shift_JIS"?>

<!DOCTYPE document SYSTEM "./dtd/document-v10.dtd">

<document>
  <header>
    <title>アップグレード Howto/Migration Howto</title>
    <authors>
      <person name="Vincent Massol" email="vmassol@apache.org"/>
    </authors>
    <translators><person name="漆島賢二"/></translators>
  </header>

  <body>

    <s1 title="Cactus 1.2 から 1.3 へ/From Cactus 1.2 to 1.3">

      <p>
        Here are the steps to migrate from Cactus 1.2 to 1.3
      </p>
      <p>
	Cactus 1.2 から 1.3 へアップグレードする手順は次の通りです
      </p>

      <note>
        This migration guide does not explain any of the new feature of
        Cactus 1.3 but concentrates on making you move from Cactus 1.2 to 1.3.
      </note>
      <note>
	このアップグレードガイドは Cactus 1.3 の新機能を説明するものではなく、
	Cactus 1.2 から 1.3 への移行について述べることに専念します。
      </note>

      <p>
        Let's call <code>CACTUS_HOME</code> the directory where you unzipped
        the Cactus distribution.
      </p>
      <p>
	Cactus ディストリビューションを解凍したディレクトリを
	<code>CACTUS_HOME</code> としましよう。
      </p>

      <p>
        Follow these steps :
      </p>
      <p>
        次の手順に従います :
      </p>
      <ul>
        <li>
          <strong>Step 1</strong> : Put <code>aspectjrt.jar</code> (found in
          <code>CACTUS_HOME/lib</code>) in both your client side and server
          side classpaths.
        </li>
        <li>
          <strong>ステップ 1</strong> : 
	  (<code>CACTUS_HOME/lib</code> にある)
	  <code>aspectjrt.jar</code> を
	  クライアント側、サーバー側双方のクラスパスに置きます。
        </li>
        <li>
          <strong>Step 2</strong> : Modify your <code>cactus.properties</code>
          to the new format. For example:
        </li>
        <li>
          <strong>ステップ 2</strong> : 
	  自分の <code>cactus.properties</code> を新しい形式に変更します。
	  例えば : 
        </li>
<source><![CDATA[
cactus.contextURL = http://localhost:8000/cactus
cactus.servletRedirectorName = ServletRedirector
]]></source>
        <li>
          <strong>Step 3</strong> : Ensure that
          <code>cactus.servletRedirectorName</code> does
          not end with a "/" and that the mapping in <code>web.xml</code>
          matches it :
        </li>
        <li>
          <strong>ステップ 3</strong> : 
	  <code>cactus.servletRedirectorName</code> が、
	  "/" で終らず、
	  <code>web.xml</code> 中のマッピングが一致することを確認します : 
        </li>
<source><![CDATA[
    <servlet-mapping>
        <servlet-name>ServletRedirector</servlet-name>
        <url-pattern>/ServletRedirector</url-pattern>
    </servlet-mapping>
]]></source>
      </ul>

    </s1>

  </body>
</document>
