「Microsoft.Data.SqlClient.SqlException: 'ログインに失敗しました: クライアント認証スキーム 'Anonymous' で HTTP 要求が禁止されました。」という問題があります。実行されている例が見つかりません。
var sqlConnectionString = @"
Data Source=xxxxx.crm4.dynamics.com;
Initial Catalog=xxxxx;
User ID=<the app id>;
Password=<the secret>;
Authentication=ActiveDirectoryServicePrincipal;";
using var cn = new SqlConnection(sqlConnectionString);
cn.Open();
私の間違いはどこですか?接続に http スキームを使用する理由 これはどこで設定できますか?
すべてのアイデアに感謝します。私は絶望しています:-o