Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 73052 invoked from network); 6 Aug 2008 05:32:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Aug 2008 05:32:16 -0000 Received: (qmail 69265 invoked by uid 500); 6 Aug 2008 05:32:15 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 69162 invoked by uid 500); 6 Aug 2008 05:32:15 -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 69153 invoked by uid 500); 6 Aug 2008 05:32:15 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 69150 invoked by uid 99); 6 Aug 2008 05:32:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Aug 2008 22:32:15 -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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2008 05:31:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8D941238889D; Tue, 5 Aug 2008 22:31:25 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r683113 - in /webservices/axis2/trunk/c/src/core: clientapi/op_client.c deployment/conf_builder.c Date: Wed, 06 Aug 2008 05:31:25 -0000 To: axis2-cvs@ws.apache.org From: supun@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080806053125.8D941238889D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: supun Date: Tue Aug 5 22:31:24 2008 New Revision: 683113 URL: http://svn.apache.org/viewvc?rev=683113&view=rev Log: added the capability include udp transport. Modified: webservices/axis2/trunk/c/src/core/clientapi/op_client.c webservices/axis2/trunk/c/src/core/deployment/conf_builder.c Modified: webservices/axis2/trunk/c/src/core/clientapi/op_client.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/clientapi/op_client.c?rev=683113&r1=683112&r2=683113&view=diff ============================================================================== --- webservices/axis2/trunk/c/src/core/clientapi/op_client.c (original) +++ webservices/axis2/trunk/c/src/core/clientapi/op_client.c Tue Aug 5 22:31:24 2008 @@ -913,6 +913,10 @@ { transport_enum = AXIS2_TRANSPORT_ENUM_AMQP; } + else if (!axutil_strcmp(transport, AXIS2_TRANSPORT_UDP)) + { + transport_enum = AXIS2_TRANSPORT_ENUM_UDP; + } conf_ctx = axis2_svc_ctx_get_conf_ctx(op_client->svc_ctx, env); if (conf_ctx) Modified: webservices/axis2/trunk/c/src/core/deployment/conf_builder.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/deployment/conf_builder.c?rev=683113&r1=683112&r2=683113&view=diff ============================================================================== --- webservices/axis2/trunk/c/src/core/deployment/conf_builder.c (original) +++ webservices/axis2/trunk/c/src/core/deployment/conf_builder.c Tue Aug 5 22:31:24 2008 @@ -798,6 +798,10 @@ { transport_enum = AXIS2_TRANSPORT_ENUM_AMQP; } + else if (!axutil_strcmp(name, AXIS2_TRANSPORT_UDP)) + { + transport_enum = AXIS2_TRANSPORT_ENUM_UDP; + } else { AXIS2_LOG_ERROR (env->log, AXIS2_LOG_SI, @@ -1150,6 +1154,10 @@ { transport_enum = AXIS2_TRANSPORT_ENUM_AMQP; } + else if (!axutil_strcmp(name, AXIS2_TRANSPORT_UDP)) + { + transport_enum = AXIS2_TRANSPORT_ENUM_UDP; + } else { AXIS2_LOG_ERROR (env->log, AXIS2_LOG_SI,