Trying this filter but getting error msg, any idea how can I put GET and 200 in 1 filter. http.request.method == "GET" and http.response.code == 200 Thank you asked 15 Feb '12, 08:12 Ezat |
One Answer:
those are 2 different packets, so you should use an 'or' instead of an' and' ie http.request.method == "GET" or http.response.code == 200 answered 15 Feb '12, 08:26 thetechfirm |
Sorry guys I found it in Sake respond to 1 of the questions in HTTP tad as follows. http and (http.request.method == "GET" || http.response.code == 200)
Thanks again