Forum Discussion

Fallout1984's avatar
Fallout1984
Icon for Cirrocumulus rankCirrocumulus
Mar 23, 2021

HTTP health check: Manual GET result versus what's seen in Fiddler

Scenario: Replace the generic http health check to a menu page with something specific. The issue is the page in question redirects to a login page on a different site before returning to (and actually displaying) that menu page.

 

Using Fiddler I can see the html of the initial page before it redirects, however when I manually send a GET from the F5 for it I receive a '200 OK" along with <title>Page Not Found</title>. I was expecting to get back the same html I see in Fiddler. Is this due to the redirect futzing with the GET request?

 

Has anyone run into this situation before?

 

Thanks!

 

Note: This is the GET I'm using: GET /pls/prod/twbkwbis.P_GenMenu?name=bmenu.P_MainMnu\r\nConnection: Close\r\n\r\n

1 Reply

  • I'm suspecting that the 'page not found' is because it's a GET before a user's authenticated, thus the page may not be 'available' at that time. Using a dummy account as a login/monitor may be the way to go...