I am trying to debug small HTTP client checking for its headers . It Is hard for me to check the header of HTTP ,is there any eclipse plugin available for monitoring HTTP client (HTTP headers)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try the blow link. There is a tool in eclipse name
TCP/IP monitor.It provides a console.All you have to add is you server port lets assume
localhost:8080and a monitoring port8081(according to reference )then when you will call on
http://localhost:8081/your_servlet_or_page/...the call will be redirect to
http://localhost:8080/your_servlet_or_page/...and you will be able to see headers in console
TCP/IP monitor consolereference #
http://www.avajava.com/tutorials/lessons/how-do-i-monitor-http-communication-in-eclipse.html
http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.wst.wsi.ui.doc.user%2Ftasks%2Ftmonitor.html
The above reference is tested by me..it is working fine.