0

次のような例外エラー メッセージが表示されました。

Content Type text/xml; charset=utf-8 was not supported by service 
http://localhost:8000/GettingStarted/CalculatorService/.  
The client and service bindings   may be mismatched.

私のクライアント アプリケーション app.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup> 
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_ICalculator" />
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost:8000/GettingStarted/CalculatorService/"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICalculator"
            contract="Calculatorservice.ICalculator"  name="BasicHttpBinding_ICalculator" />
    </client>
</system.serviceModel>
</configuration>

私のサービスapp.configは

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

<appSettings>
 <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" />
</system.web>
<system.serviceModel>
<services>
  <service name="GettingStartedLib.CalculatorService">
    <host>
      <baseAddresses>
        <add baseAddress = "http://localhost:8000/GettingStarted/CalculatorService/" />
      </baseAddresses>
    </host>
   <endpoint address="" binding="basicHttpBinding" contract="GettingStartedLib.ICalculator">
     <identity>
        <dns value="localhost"/>
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior>
     <serviceMetadata httpGetEnabled="True" httpsGetEnabled="True"/>
      <serviceDebug includeExceptionDetailInFaults="False" />
    </behavior>
  </serviceBehaviors>
  </behaviors>
  </system.serviceModel>
  </configuration>

私はWCFサービスを初めて使用します。私は完全に混乱しており、どこで間違ったのか理解できません。IIS で wcf サービスをまだホストしていません。wcf ホスト アプリケーションが実行されると、正常に参照できます (サービスを実行するためのコンソール アプリケーション)。

4

0 に答える 0