Is there an HTTP proxy tool that can substitute browsed content? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:01:20Zhttp://stackoverflow.com/feeds/question/461367http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/461367/is-there-an-http-proxy-tool-that-can-substitute-browsed-content0Is there an HTTP proxy tool that can substitute browsed content?Graham Phllips2009-01-20T13:57:03Z2009-01-20T14:34:27Z
<p>What I'm looking for is some sort of a proxy tool that will allow me to specify a local file to load instead of one specified in the web page that is being browsed. I have tried Burp Suite which is almost working - it allows us to intercept a file and replace it by pasting the contents of the file we are swapping in into an input field. The file content is compiled code (Flash content) so we are pasting in bytecode, but something isn't working.</p>
<p>The reason is we are a 3rd party software developer without access to our client's development or testing environments. Our content must interact correctly with the rest of the content on their webpage (there are elements on their page that communicate with our content) and to test any changes we make takes several hours turnaround to get our files uploaded to their servers. So what we need is some sort of hacking tool to let us test our work with their web pages, hence the requirement to specify a file in a webpage to swap with a local version. </p>
http://stackoverflow.com/questions/461367/is-there-an-http-proxy-tool-that-can-substitute-browsed-content/461407#4614070Answer by Jonas Elfström for Is there an HTTP proxy tool that can substitute browsed content?Jonas Elfström2009-01-20T14:05:08Z2009-01-20T14:18:52Z<p>You might be able to do this with <a href="https://addons.mozilla.org/en-US/firefox/addon/748" rel="nofollow">Greasemonkey</a> but I'm not sure if the tests will be totally reliable.
<a href="http://diveintogreasemonkey.org/patterns/replace-element.html" rel="nofollow">http://diveintogreasemonkey.org/patterns/replace-element.html</a></p>
<p>And if Greasemonkey seems plain wrong for you I would take it as the perfect excuse to try out <a href="http://github.com/why/mousehole/tree/master" rel="nofollow">mouseHole</a>. Now I have to admit that I've never tried <a href="http://redhanded.hobix.com/inspect/mousehole11InPlainView.html" rel="nofollow">it</a> but since _why also made <a href="http://github.com/why/hpricot/tree/master" rel="nofollow">Hpricot</a> I expect it to be fun, productive, and different.</p>
http://stackoverflow.com/questions/461367/is-there-an-http-proxy-tool-that-can-substitute-browsed-content/461413#4614131Answer by mat for Is there an HTTP proxy tool that can substitute browsed content?mat2009-01-20T14:06:33Z2009-01-20T14:06:33Z<p>I've been using <a href="http://search.cpan.org/dist/HTTP-Proxy" rel="nofollow">HTTP::Proxy</a> for a long time, and it has always helped me fiddle with things on the fly.</p>
http://stackoverflow.com/questions/461367/is-there-an-http-proxy-tool-that-can-substitute-browsed-content/461545#4615452Answer by Alo for Is there an HTTP proxy tool that can substitute browsed content?Alo2009-01-20T14:34:27Z2009-01-20T14:34:27Z<p>The autoresponder feature in <a href="http://www.fiddler2.com/" rel="nofollow">Fiddler Web Debugging Proxy</a> might do what you need, if it's only static content.</p>