APIでの検索モードの構成

対話Webサービスでは、SearchMode単純型は、テキスト検索の実行時に使用可能な検索モードを列挙します。

リクエストのTextSearchFilterタイプおよびValueSearchConfigタイプで、Mode属性の値として、検索モードの特定のタイプを指定できます。

次の例では、TextSearchFilterAllPartial検索モードが使用されます。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Request xmlns="http://www.endeca.com/MDEX/conversation/3/0">
      <State>
        <TextSearchFilter Key="MySearchInterface" RelevanceRankingStrategy="numfields" 
          Mode="AllPartial" EnableSnippeting="false" Language="en">
            aluminum
        </TextSearchFilter>
      </State>
      <RecordListConfig Id="RecordList" MaxPages="30">
         <Column>ProductCategory</Column>
         <RecordsPerPage>5</RecordsPerPage>
      </RecordListConfig>
    </Request>
  </soap:Body>
</soap:Envelope>