This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

HTTP GET & 200 in 1 filter

1

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's gravatar image

Ezat
21225
accept rate: 0%

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

(15 Feb '12, 08:18) Ezat

One Answer:

1

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's gravatar image

thetechfirm
64116
accept rate: 0%