We recently ran into an issue whether a tomcat application would not perform a certain Application specific function that it used to perform in the past (basically commit a file).
After days and days of troubleshooting I found that it was because the developer had hard coded the name of a proxy server in his deployment file (I found it out by looking at the application property file). The proxy server had long been replaced with a newer one. Once the developer updated the property file with the correct proxy server name, it started to work fine.
As part of the troubleshooting, I had collected tcpdump's but due to my lack of knowledge with it, I was unable to locate the culprit using tcpdump (+ Wireshark).
My question is this, how would I identify this issue using tcpdump ?
EDIT : Not sure whether its clear but "The old proxy server had long been replaced with a newer one and the old proxy server was unreachable"