I am writing an SWT application, and I need to proxy http requests from SWT browser to the outside world (in order to fiddle with data that comes back).
The first thing I thought of was using a web proxy. Boom.
All Browser instances automatically use Windows' or OS X's global proxy settings.
When googling for alternatives I found this thread. They have some Mozilla-specific workarounds that are using nsIServiceManager dark magic, and I tend to think there have to be much more sane (and cross-browser) way to do that.
Also, I don‘t need a full-fledged web proxy. Just about any technique to intercept http request and change its response would be just fine. (Without an overkill of setting up system-wide proxy, that is.)
Any ideas?