Hi All, I am facing an issue with customer network wherein when i request an HTTP/GET request it is going as a data payload in the TCP request to the server. due to this I am unable to do http based enhancements to the URL. The PSH, ACK flag is set and when I follow the TCP request i see it as a proper GET request GET / HTTP/1.1 Connection: Keep-Alive Host: x.x.x.x:8180 The communication with server is also happening fine. Whereas for another URL with the same process I m seeing a proper Http/Get request. I m not able to understand what is this issue pertaining to. Is it an issue with the sending application settings? How do i resolve this asked 06 Sep '13, 01:18 Vinay Pagadal |
One Answer:
The reason why you don't see the HTTP REQUEST in Wireshark is the port. Wireshark 'detects' HTTP mainly on the port and the standard ports for HTTP do not include port 8180. There are two options.
After that, you will see the conversation as HTTP and you should be able to use these display filters:
Regards answered 09 Sep '13, 09:02 Kurt Knochner ♦ |
Oh so there is no problem with my client or server sending the request...its just that wireshark is unable to decode it as an Http request due to a non standard TCP port number.
Thanks a lot for your help Kurt :)