I can't give out the link in question. Sorry. However I can explain what is happening. The connection is being closed on dynamic pages. Refreshing the same page results in a full https handshake (2 full round trips). Also the response headers show connection: close. But only for dynamic content.
Static content is sending connection: Keep-Alive in the response header and sure enough, when the page is refreshed the connection time is 0ms. I.e. the connection has successfully been left open. Googleing suggests that the keepAlive setting in Apache is all I need to change. Having change the httpd.conf I can see the changes (examinin the response headers) in the static content, but not the ruby stuff. The output from ruby is using render to output xml. What other details would you like to know? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

