From 60d6abe542cbed0bb4017edd404971b092627f36 Mon Sep 17 00:00:00 2001 From: Jean Raby Date: Tue, 17 Sep 2013 09:07:53 -0400 Subject: [PATCH] Use HTTP/1.0 to avoid chunked replies Fixes^WWorkaround #2408 --- SoObjects/SOGo/SOGoCASSession.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoObjects/SOGo/SOGoCASSession.m b/SoObjects/SOGo/SOGoCASSession.m index ce0f8917e..4d684c382 100644 --- a/SoObjects/SOGo/SOGoCASSession.m +++ b/SoObjects/SOGo/SOGoCASSession.m @@ -390,7 +390,7 @@ [httpConnection autorelease]; request = [[WORequest alloc] initWithMethod: @"GET" uri: [requestURL hostlessURL] - httpVersion: @"HTTP/1.1" + httpVersion: @"HTTP/1.0" headers: nil content: nil userInfo: nil]; [request autorelease];