Sometimes you need to capture the Http traffic that your RESTEasy client generates for debugging purposes.
That allows you to see all actual Http headers and payloads of all requests and responses.
From the box Fiddler doesn’t capture RESTEasy’s traffic
Fortunatelly, this is an easy fix - set default proxy to ‘'’127.0.0.1:8888’’’.
ResteasyClient httpClient = new ResteasyClientBuilder()
...
.defaultProxy("127.0.0.1", 8888)
...
.build();