• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

HTTP Monitor

 
Ranch Hand
Posts: 328
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Everybody,
I don't know wheather this is right place to post a question.I want to know where i will get HTTP Monitor so that i can view all the details related to HTTP Request & HTTP Responce details. I think it is built in in the NetBeans4.0 but i do not have NetBeans.


Regards,
Shrinivas Mujumdar
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If the HTTP sever is on local machine;I think a sniffer can keep all the HTTP data pack;is this what you need?
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ou can easily set up TCP TunnelGUI or TCP Monitor as a proxy to view request/response data.

TunnelGUI is a little basic but easy to use - it is included free in the SOAP jars. Usage:
start javaw -classpath soap.jar org.apache.soap.util.net.TcpTunnelGui 8001 localhost 7001

TCP monitor matches requests and reponses but takes a little more work, and it can sometimes be fooeld by Keep-Alive requests. It is in the Apache Axis jar. Usage:
start javaw -classpath axis.jar org.apache.axis.utils.tcpmon 8001 localhost 7001

In both cases above it will listen on local port 8001 and forward requests to localhost:7001
[ June 02, 2005: Message edited by: David O'Meara ]
 
Yeast devil! Back to the oven that baked you! And take this tiny ad too:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic