Forum Discussion

Michael_-_Harr1's avatar
Michael_-_Harr1
Icon for Nimbostratus rankNimbostratus
Dec 09, 2016

Monitor for content is not working - I believe the HTML version is 1.1

Monitor for content is not working - I believe the HTML version is 1.1

 

Im having issue getting my monitor to work. It works with some servers but not all. I think the syntax needs to be different for HTML version 1.1

 

Can anyone help see below. I believe the send string needs different syntax

 

Send string GET /penfedonline/support/pages/pagestatus.aspx\r\n Receive string ONLINE

 

1 Reply

  • Hi,

    if the server requires HTTP 1.1, the request mut be:

    GET /penfedonline/support/pages/pagestatus.aspx HTTP/1.1
    Host: www.example.com
    Connection: Close
    
    

    F5 monitor does not support new line and must be configured with \r\n for each new line:

    GET /penfedonline/support/pages/pagestatus.aspx HTTP/1.1\r\nHost: www.example.com\r\nConnection: Close\r\n\r\n