Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 32259 invoked from network); 24 Mar 2008 06:03:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Mar 2008 06:03:02 -0000 Received: (qmail 9442 invoked by uid 500); 24 Mar 2008 06:03:00 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 9319 invoked by uid 500); 24 Mar 2008 06:03:00 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 9308 invoked by uid 500); 24 Mar 2008 06:03:00 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 9305 invoked by uid 99); 24 Mar 2008 06:03:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 23 Mar 2008 23:03:00 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Mar 2008 06:02:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CEADB1A9832; Sun, 23 Mar 2008 23:02:38 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r640321 - in /webservices/axis2/trunk/c: include/axis2_http_simple_response.h src/core/clientapi/svc_client.c src/core/transport/http/common/http_simple_response.c Date: Mon, 24 Mar 2008 06:02:38 -0000 To: axis2-cvs@ws.apache.org From: supun@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080324060238.CEADB1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: supun Date: Sun Mar 23 23:02:37 2008 New Revision: 640321 URL: http://svn.apache.org/viewvc?rev=640321&view=rev Log: Fixed a missing initialization in svc_client for http_pheaders and fixed a missing AXIS2_EXTERN Modified: webservices/axis2/trunk/c/include/axis2_http_simple_response.h webservices/axis2/trunk/c/src/core/clientapi/svc_client.c webservices/axis2/trunk/c/src/core/transport/http/common/http_simple_response.c Modified: webservices/axis2/trunk/c/include/axis2_http_simple_response.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_simple_response.h?rev=640321&r1=640320&r2=640321&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_simple_response.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_simple_response.h Sun Mar 23 23:02:37 2008 @@ -128,7 +128,7 @@ * @param simple_response pointer to simple response struct * @param env pointer to environment struct */ - axutil_array_list_t *AXIS2_CALL + AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL axis2_http_simple_response_extract_headers( axis2_http_simple_response_t * simple_response, const axutil_env_t * env); Modified: webservices/axis2/trunk/c/src/core/clientapi/svc_client.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/clientapi/svc_client.c?rev=640321&r1=640320&r2=640321&view=diff ============================================================================== --- webservices/axis2/trunk/c/src/core/clientapi/svc_client.c (original) +++ webservices/axis2/trunk/c/src/core/clientapi/svc_client.c Sun Mar 23 23:02:37 2008 @@ -284,6 +284,7 @@ svc_client->auth_failed = AXIS2_FALSE; svc_client->required_auth_is_http = AXIS2_FALSE; svc_client->auth_type = NULL; + svc_client->http_headers = NULL; /** initialize private data to NULL, create options */ if (!axis2_svc_client_init_data(env, svc_client)) Modified: webservices/axis2/trunk/c/src/core/transport/http/common/http_simple_response.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/common/http_simple_response.c?rev=640321&r1=640320&r2=640321&view=diff ============================================================================== --- webservices/axis2/trunk/c/src/core/transport/http/common/http_simple_response.c (original) +++ webservices/axis2/trunk/c/src/core/transport/http/common/http_simple_response.c Sun Mar 23 23:02:37 2008 @@ -218,7 +218,7 @@ return axis2_http_status_line_to_string(simple_response->status_line, env); } -axutil_array_list_t *AXIS2_CALL +AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL axis2_http_simple_response_get_headers( axis2_http_simple_response_t * simple_response, const axutil_env_t * env) --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org