You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by na...@apache.org on 2007/08/14 13:46:52 UTC

svn commit: r565717 - /webservices/axis2/trunk/c/src/core/transport/http/util/http_transport_utils.c

Author: nandika
Date: Tue Aug 14 04:46:51 2007
New Revision: 565717

URL: http://svn.apache.org/viewvc?view=rev&rev=565717
Log:
increased the hard coded value of content_length to fix large attachement with chunking failure,
I will raise a jira issue for this as well. 

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/util/http_transport_utils.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/util/http_transport_utils.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/util/http_transport_utils.c?view=diff&rev=565717&r1=565716&r2=565717
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/util/http_transport_utils.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/util/http_transport_utils.c Tue Aug 14 04:46:51 2007
@@ -266,7 +266,7 @@
                 and also gives out a content lenght of 0.
                 We need to fix the transport design to fix sutuations like this.
                 */
-            callback_ctx->content_length = 1000000;
+            callback_ctx->content_length = 100000000;
             callback_ctx->unread_len = callback_ctx->content_length;
         }
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org