在Roumen的blog上,给我们提供了一个使用netbeans的小技巧, 用来监控http通信,
刚好最近几天做的一个东西要知道通信的细节, 用的都是httpwatch, 没有和ide集成起来,感觉不是很爽. 现在试试这个功能吧. 呵呵
Did you know that you can use NetBeans to monitor all communication of your web application - between the web browser and the web server? Indeed, you can see all the requests, read the headers, see the request parameters, etc. But not only that, you can actually save these requests and replay them.
This becomes very handy when testing your web application. For example you want to open a page with different parameters so you replay the request with modified (or even new) parameters.

HTTP Monitor in NetBeans
HTTP monitor becomes really handy when working with AJAX. You can see every individual request and response, even though the form wasn't submitted - so you can actually monitor how javascript code requests new XML documents as the user goes through the page. It is quite amazing how much communication there can be between the webpage and server in some AJAX apps. So HTTP monitor can also help you see if you are not doing too many requests to the server.
HTTP monitor is accessible via Window | HTTP monitor. In case of Tomcat the monitor is enabled by default, but in case of Sun appserver it needs to be activated in Server Manager. I do not know about the other servers... please add a comment if you know how you can monitor requests to other appservers.
使用NetBeans监控HTTP通信
本文介绍了如何利用NetBeans IDE内置的功能来监控Web应用程序的HTTP通信。不仅可以查看请求头、参数等信息,还可以保存并重新发送请求以进行不同参数条件下的测试。特别地,在处理AJAX请求时,此功能非常有用,可以监测到每个单独的请求和响应。
307

被折叠的 条评论
为什么被折叠?



