How can I view the actual request that Jersey generates and sends to the server? I am having issues with a particular request and the fellow running the webserver asked to see the full request (with headers and the such).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you're just using Jersey Client API, LoggingFilter (client filter) should help you:
Otherwise, you can again log both request and response on server using other LoggingFilter (container filter). |
|||
|
|