Is it possible, with firebug or perhaps some other tool, to capture
the client's and the server's data streams? I.e., the stream that the
application sends to TCP and the stream that the TCP stack returns to
the client?
I have tried to use Firebug / NetExport add-ons to extract the
desired data. Unfortunately, the tools don't provide a faithfully
ordered record of the data stream. For example, from wireshark, I see
the client send stream as:
GET / HTTP/1.1\r\nHost:www.google.com\r\n
But NetExports HAR format represents the data:
"request":{
"method":"GET",
"url":"http://www.google.com/",
"httpVersion":"HTTP/1.1"
As someone already created a utility to convert from HAR to HTTP data
stream? I've been google searching but haven't found anything.
--
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en.