How to "respond with" HTTP files using Fiddler's AutoResponder? -
is there way have fiddler use http-delivered file response when using autoresponder?
i have autoresponder rule set similar this:
if uri matches... http://www.liveserver.com/scripts/javascript_file.js respond with... http://internal-dev-server.ext/scripts/javascript_file.js
so can qa different javascript before publishing live.
but responses via http ways return 404 error. specifically:
fiddler - file c:\users\me\documents\fiddler2\captures\responses\http://internal-dev-server.ext/scripts/javascript_file.js not found.
i same thing if start request , response "exact:"
supported in v2.3.2.5, in alpha form @ https://www.fiddler2.com/dl/fiddler2alphasetup.exe
you can either use http/https url directly, or can use syntax like:
*redir:http://othersite.com/whatever
the advantage of redir syntax server return 307 response new outbound request bears cookies , other information "othersite.com" instead of "originalsite.com". may or may not desirable.
alternatively, hosts option on tools menu 1 way achieve this; alternative type urlreplace partialurlstring1 newpartialurlstring2 in quickexec box under session list. or write rule inside rules > customize rules. see www.fiddler2.com/fiddler/dev/scriptsamples.asp examples.
Comments
Post a Comment