Because the next request has something to do with the previous request in the long connection, I want to replace the string and keep alive the connection and let the client close the connection when it want. Is there any option or method to do it?
Thanks and Best Regards GuoXiang -------------------------------- Email&Gtalk:[email protected] MSN: [email protected] "I COME, I SEE,I CONQUER" --------Caesar 2013/8/15 perlbox <[email protected]> > Hi Lukas, > Thank you for the reply. I have try this two option. It seems this > two option don't work for me :( > In my application situation: In the Long connection, the client will POST > /test/XXX to server some times in one long connection, I want to replace > the /test/XXX to /serverfault/XXX every request and then send to server, > the close of connection will be operated by client not by the server. > > > Thanks and Best Regards > GuoXiang > -------------------------------- > Email&Gtalk:[email protected] > MSN: [email protected] > > "I COME, I SEE,I CONQUER" > --------Caesar > > > 2013/8/15 Lukas Tribus <[email protected]> > >> Hi GuoXiang! >> >> >> > I traced and found HAProxy will only process the first request of each >> > connection. >> >> Use "option http-server-close" or "option httpclose": >> >> >> http://cbonte.github.io/haproxy-dconv/configuration-1.4.html#option%20http-server-close >> >> http://cbonte.github.io/haproxy-dconv/configuration-1.4.html#option%20httpclose >> >> >> Regards, >> >> Lukas > > >

