[EMAIL PROTECTED] wrote: > * how to create a nsIHttpChannel which inspects the http response in > c?
Which http response? If you just want to make a new request and examine the response, you can use nsIIOService to create channels. Then you asyncOpen the channel with a listener that you create, and wait for OnStartRequest. There you can examine the response. If you want to examine the responses the browser gets in general, you want to use the http-on-examine-response notification. See http://developer.mozilla.org/en/docs/Observer_Notifications#HTTP_requests -Boris _______________________________________________ dev-tech-network mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-network
