2

SharePoint 2010 サービス アプリケーションがあり、チャネルでコードを実行しようとすると、次のエラーが表示されます。

暗号化アルゴリズム '' は、このコンテキストではサポートされていません。System.NotSupportedException: 暗号化アルゴリズム '' は、このコンテキストではサポートされていません。

実際には '' 引用符が 2 つあるだけで、その間には何もありません。authenticationMode に IssuedToken を使用しています。これが私のweb.configファイルです:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.web>
        <compilation debug="true" defaultLanguage="C#" />
    </system.web>
    <system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="TLAPITypeBehaviors" >
                    <serviceMetadata httpGetEnabled="true" />
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <services>
            <service name="AF.TipAndLeadAPI.TipAndLeadAPIServiceApplication" behaviorConfiguration="TLAPITypeBehaviors">
                <endpoint binding="customBinding" bindingConfiguration="TLAPIServiceHttpBinding"
                          contract="AF.TipAndLeadAPI.ITipAndLeadAPIContract"
                          address="" />
            </service>
        </services>
        <bindings>
            <customBinding>
                <binding name="TLAPIServiceHttpBinding">
                    <security authenticationMode="IssuedTokenOverTransport" allowInsecureTransport="true" />
                    <textMessageEncoding>
                        <readerQuotas maxStringContentLength="2048576000" maxArrayLength="2097152000" />
                    </textMessageEncoding>
                    <httpTransport maxReceivedMessageSize="2162688" authenticationScheme="Anonymous" useDefaultWebProxy="false" />
                </binding>
            </customBinding>
        </bindings>
    </system.serviceModel>
    <system.webServer>
        <security>
            <authentication>
                <anonymousAuthentication enabled="true" />
                <windowsAuthentication enabled="false" />
            </authentication>
        </security>
    </system.webServer>
</configuration>

そして私のclient.configファイル:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <client>
            <endpoint  address=""
                name="http"
                      binding="customBinding" bindingConfiguration="TLAPIServiceHttpBinding"
                      contract="AF.TipAndLeadAPI.ITipAndLeadAPIContract" />
        </client>
        <bindings>
            <customBinding>
                <binding name="TLAPIServiceHttpBinding">

                    <security authenticationMode="IssuedTokenOverTransport" allowInsecureTransport="true" />
                    <textMessageEncoding>
                        <readerQuotas maxStringContentLength="204857600" maxArrayLength="209715200" />
                    </textMessageEncoding>
                    <httpTransport maxReceivedMessageSize="216268800" authenticationScheme="Anonymous" useDefaultWebProxy="false" />
                </binding>
            </customBinding>
        </bindings>
    </system.serviceModel>
</configuration>

authenticationMode を IssuedTokenOverTransport のようなものに変更すると、アセンブリの不一致エラーが発生します。証明書のあるものに変更すると、証明書エラーが発生するので、認証モードに関係していると思います。

どんな助けでも大歓迎です。

4

0 に答える 0