2

フィドラーの動作を確認するためだけに、Visual Studio 開発サーバーを使用して非常に基本的な wcf サービスを構築します。

c#

 public class Service1 : IService1
    {
        public string GetData(int value)
        {
            return string.Format("You entered: {0}", value);
        }

        public CompositeType GetDataUsingDataContract(CompositeType composite)
        {
            if (composite == null)
            {
                throw new ArgumentNullException("composite");
            }
            if (composite.BoolValue)
            {
                composite.StringValue += "Suffix";
            }
            return composite;
        }
    }

web.config

<?xml version="1.0"?>
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>

wcftestclient を実行すると、getdata() が機能することが示されますが、フィドラーには表示されませんか? どうすればこれを修正できますか?

ありがとうP

4

1 に答える 1

0

あなたのサービスのアドレスは何ですか? localhost または 127.0.0.1 を使用する場合、これらのメッセージはキャプチャされません。マシン名またはネットワーク IP アドレスを使用します。プロジェクトのプロパティで設定するか、エンドポイントで直接設定できます。

于 2014-09-03T08:48:55.767 に答える