Is there any way I can get to the network traffic (requests and responses) being done by the JavaFX WebView control? From what I gather this is pretty much all native webkit, not even URLConnection is used, but maybe someone has a good idea.
I'm specifically interested in capturing the location header transmitted between two redirect responses (302), not the location the redirects will eventually be send to. So there is a request, it gets a 302, the new URL gets a 302 as well, and then the end location. I either need the location header in the first 302 response, or the second request's URL before it gets redirected.