Solr検索プロバイダーでAzure Marketplaceを使用してソリューションをデプロイすると、sitecore_testing_index とsitecore_suggested_test_index が見つかりません。 この問題は、現在のインデックス コア名が正しくないために発生します。 他のインデックスは動的に定義された名前$(id)を使用しますが、これら2つのインデックスでは、明示的に標準でない値に設定されています。 次のエラーメッセージがログに表示される場合があります:
ERROR Unable to connect to [https://ss680690-37h4xtb0-northeurope-azure.searchstax.com/solr], Core: [Sitecore-sitecore_testing_index] Exception: SolrNet.Exceptions.SolrConnectionException Message:
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <title>Error 404 Not Found</title>
この問題を解決するには、以下のように、明示的に定義された「コア」名を動的なものに変更します:
<param desc="core">Sitecore-sitecore_testing_index</param>②
<param desc="core">Sitecore-sitecore_suggested_test_index</param>上記を、動的に定義された値に変更します:
<param desc="core">$(id)</param>