9

フィドラーでVS2012からの次のリクエストを監視しようとしていますが、できません:

        var client = new HttpClient();
        client.BaseAddress = new Uri("http://localhost:8081/");
        var product = new Product() { Description = "blabla", CatalogName = "myName"};
        MediaTypeFormatter jsonFormatter = new JsonMediaTypeFormatter();
        // Use the JSON formatter to create the content of the request body.
        HttpContent content = new ObjectContent<Product>(product, jsonFormatter);
        // Send the request.
        HttpResponseMessage resp = client.PostAsync(@"odata/Products/", content).Result;
        var result = resp.Content.ReadAsStringAsync().Result;

約 2000 のマニュアルとフィードを読みましたが、わかりませんでした。
どんな手掛かり?

4

2 に答える 2

19

URLにフィドラーを追加するだけで

http://localhost.fiddler:8081/

トラフィックはフィドラーを介してルーティングされるため、フィドラーに表示されます。

PSクレジットとして:https://stackoverflow.com/a/13358261/805138

于 2013-09-11T15:30:18.577 に答える
3

このリンクをチェックしてください - http://fiddler2.com/documentation/Configure-Fiddler/Tasks/MonitorLocalTraffic。localhost の代わりに、マシン名または IPV4/6 アダプターを使用します。

于 2013-09-10T15:26:11.877 に答える