Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 87579 invoked from network); 26 Jun 2009 10:43:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 Jun 2009 10:43:26 -0000 Received: (qmail 86734 invoked by uid 500); 26 Jun 2009 10:43:36 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 86566 invoked by uid 500); 26 Jun 2009 10:43:36 -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 86557 invoked by uid 500); 26 Jun 2009 10:43:36 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 86553 invoked by uid 99); 26 Jun 2009 10:43:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jun 2009 10:43:36 +0000 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; Fri, 26 Jun 2009 10:43:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 02589238886C; Fri, 26 Jun 2009 10:43:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r788651 - /webservices/axis2/trunk/c/xdocs/docs/hello/service/hello_svc.c Date: Fri, 26 Jun 2009 10:43:13 -0000 To: axis2-cvs@ws.apache.org From: nandika@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090626104314.02589238886C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nandika Date: Fri Jun 26 10:43:13 2009 New Revision: 788651 URL: http://svn.apache.org/viewvc?rev=788651&view=rev Log: hello_svc.c error message corrected Modified: webservices/axis2/trunk/c/xdocs/docs/hello/service/hello_svc.c Modified: webservices/axis2/trunk/c/xdocs/docs/hello/service/hello_svc.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/docs/hello/service/hello_svc.c?rev=788651&r1=788650&r2=788651&view=diff ============================================================================== --- webservices/axis2/trunk/c/xdocs/docs/hello/service/hello_svc.c (original) +++ webservices/axis2/trunk/c/xdocs/docs/hello/service/hello_svc.c Fri Jun 26 10:43:13 2009 @@ -157,9 +157,9 @@ axiom_node_t *error_node = NULL; axiom_node_t *text_node = NULL; axiom_element_t *error_ele = NULL; - error_ele = axiom_element_create(env, node, "EchoServiceError", NULL, + error_ele = axiom_element_create(env, node, "HelloServiceError", NULL, &error_node); - axiom_element_set_text(error_ele, env, "Echo service failed ", text_node); + axiom_element_set_text(error_ele, env, "Hello service failed ", text_node); return error_node; }