я строю очень простой службы WCF с помощью визуального сервера разработки студии, чтобы посмотреть, скрипач работы:cant get fiddler для записи запросов от wcftestclient.exe?
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
См. [Этот другой вопрос SO] (http://stackoverflow.com/questions/4629800/how-to-use-fiddler-to-monitor-wcf-service) о том, как настроить WCF, чтобы пройти через ваш Fiddler прокси, чтобы Fiddler мог уловить ваши запросы. Вы также должны определить этот прокси-сервер в своем тестовом клиенте WCF, чтобы дать Fiddler возможность увидеть запросы –
, он не работает для настройки с WSHttpBinding, при этом BASicHttpbinding работает – user603007