I am using the following code to serve a local HTML file when the URL of a web request contains a certain keyword.
Instead of a local file, is it possible for Fiddler to reply with a web page hosted on a remote server? Something like this...
Thank you!
Alex
if (oSession.uriContains("keyword")) {
oSession["x-replywithfile"] = "D:/content.html";
}Instead of a local file, is it possible for Fiddler to reply with a web page hosted on a remote server? Something like this...
if (oSession.uriContains("keyword")) {
oSession["x-replywithfile"] = "https://www.domain.com/content.html";
}Thank you!
Alex
