Windows 7/IIS7.5 でローカルにコードをテストした後、このコードを Windows 2003/IIS6 運用環境に展開したところ、恐ろしい「要求が中止されました: SSL/TLS セキュア チャネルを作成できませんでした」というエラーが表示されます。
可能なすべての ServicePointManager コード行を追加しましたが、役に立ちませんでした:
ServicePointManager.UseNagleAlgorithm = true; ServicePointManager.Expect100Continue = true; ServicePointManager.CheckCertificateRevocationList = true; ServicePointManager.DefaultConnectionLimit = ServicePointManager.DefaultPersistentConnectionLimit; ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3; ServicePointManager.ServerCertificateValidationCallback = デリゲート { true を返します。};
これはすべて、最新の Facebook C# SDK を使用して GET 操作を実行しようとしたときに発生します。
トレースすると、Facebook トークンが正しく渡されていることがわかりますが、それ以外はわかりません。
何か案は?私は見つけることができるすべての解決策を試しましたが、うまくいくものを見つけられないようです。
前もって感謝します!