Forum Discussion

Gustavo_Jardim_'s avatar
Gustavo_Jardim_
Icon for Altocumulus rankAltocumulus
Sep 12, 2018
Solved

Remover APM Session after send response for user

Hi;   I have a webservice published with F5 BigIp 13.1.1 and this webservice needs a authentication and SSO. I use de APM to valid the username, password and make de SSO Credential Mapping. This w...
  • Gustavo_Jardim_'s avatar
    Sep 12, 2018

    I found the solution I needed add the HTTP Header "Connection: Close" during response of F5 to client.

     

    When the F5 close APM session without "Connection: Close" in HTTP Header, the client will use the TCP Connection for another APM session and the F5 will close the TCP Connection when delete the first APM session.

     

    It is the explanation for I have error when I have load, the client open another APM session using a same TCP Connection.

     

    The best iRule that I make for this example is:

     

    when HTTP_RESPONSE_RELEASE { HTTP::header insert "Connection" "Close" ACCESS::session remove }

     

    Thanks all.