Reputation: 3333
Using the application "Fiddler", I can save a HTTP raw response as a text file. Then using the "AutoResponder" tab I can do something like this:
URI: http://www.request.com/file.php
File: c:\raw_response.txt
And my application will connect to "http://www.request.com/file.php" and always get that file.
I want to do that, but not using fiddler. I want to do this via a C# application either using the fiddler core, or just pure C# (if possible I would prefer this).
I have looked at the fiddler API and docs but it is not very clear, and it seems to be all over the place.
Upvotes: 1
Views: 1363
Reputation: 3333
Turns out after contacting fiddler they said its not possible with how I want to do this. I would need the fiddler application it self.
Upvotes: 1