1

Cent OS で WCF を試すためだけの簡単なサービスを作成しました。Windows で MonoDevelop を使用してサービス クライアントを作成したところ、問題なく動作しました。(同じ構成ファイルを使用して)CentOsで実行しようとすると、クライアントの構築中にエラーがスローされます。ここでトレースしました:

                ExtensionElementCollection extensions = ((ExtensionsSection) EvaluationContext.GetSection ("system.serviceModel/extensions")).BindingExtensions;
                for (int i = 0; i < extensions.Count; i++) {
                    ExtensionElement extension = extensions [i];
                    _properties.Add (new ConfigurationProperty (extension.Name, Type.GetType (extension.Type), null, null, null, ConfigurationPropertyOptions.None));
                }

System.ServiceModel.Configuration.BindingsSection 内

エラーは ConfigurationProperty コンストラクターの argumentNullException で、型は null です。そのため、EvaluationContext.GetSection ("system.serviceModel/extensions") の Type.GetType は失敗しています。構成ファイルに拡張セクションがありません。この同じクライアントは、Windows で完全に動作します。任意のヒント。

ここに私の設定ファイルがあります:

<configuration>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IPairArithmeticService" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                useDefaultWebProxy="true">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://theIp/AlertService/Services/PairArithmeticService.svc"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IPairArithmeticService"
            contract="ServiceReference1.IPairArithmeticService" name="BasicHttpBinding_IPairArithmeticService" />
    </client>
</system.serviceModel>

4

0 に答える 0