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

只需将提琴手添加到网址

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。使用机器名或 IPV4/6 适配器代替 localhost。

于 2013-09-10T15:26:11.877 回答