ZF-5890: Requests over SSL fail in IE6
Description
When performing AMF requests over an SSL encrypted connection, no response is given in IE6.
Adding below headers will fix the response for IE6.
<?php header('Cache-Control: cache, must-revalidate'); header('Pragma: public'); $server = new Zend_Amf_Server(); $server->addDirectory( $this->registry->services_dir ); $response = $server->handle(); echo $response; ?>Fix found in: http://martijnvanbeek.net/weblog/56/… -- this link only describes the problem for IE7 and not specificly AMF, but it also works for IE6
FYI: In holland, SSL certificates are mandatory by law, hence the requirement to perform AMF requests over SSL.
Comments
Posted by Wade Arnold (wadearnold) on 2009-04-18T13:13:39.000+0000
resolution has been checked into the trunk to be added to the next minor release.