Repository: flex-blazeds
Updated Branches:
  refs/heads/4.8.0 [created] 95f7f472c


FLEX-34921 - Fix streaming on tomcat-7.0.27 + version.
- Removed the "Connection=close" Header

This closes #1


Project: http://git-wip-us.apache.org/repos/asf/flex-blazeds/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-blazeds/commit/95f7f472
Tree: http://git-wip-us.apache.org/repos/asf/flex-blazeds/tree/95f7f472
Diff: http://git-wip-us.apache.org/repos/asf/flex-blazeds/diff/95f7f472

Branch: refs/heads/4.8.0
Commit: 95f7f472c7d4622bd01184af8acc414895efe91a
Parents: 6786dc0
Author: Christofer Dutz <[email protected]>
Authored: Tue Aug 4 10:41:33 2015 +0200
Committer: Christofer Dutz <[email protected]>
Committed: Tue Aug 4 10:41:33 2015 +0200

----------------------------------------------------------------------
 .../src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java     | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/95f7f472/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java 
b/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java
index 7aa7328..40e0795 100644
--- a/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java
+++ b/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java
@@ -778,7 +778,6 @@ public abstract class BaseStreamingHTTPEndpoint extends 
BaseHTTPEndpoint
                     addNoCacheHeaders(req, res);
                 res.setContentType(getResponseContentType());
                 res.setHeader("Transfer-Encoding", "chunked");
-                res.setHeader("Connection", "close");
                 ServletOutputStream os = res.getOutputStream();
                 res.flushBuffer();
 

Reply via email to