Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 34736 invoked from network); 12 Jun 2006 08:27:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 Jun 2006 08:27:44 -0000 Received: (qmail 73481 invoked by uid 500); 12 Jun 2006 08:27:41 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 73365 invoked by uid 500); 12 Jun 2006 08:27:41 -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 73353 invoked by uid 500); 12 Jun 2006 08:27:41 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 73350 invoked by uid 99); 12 Jun 2006 08:27:41 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 01:27:41 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 01:27:38 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 3AC011A985B; Mon, 12 Jun 2006 01:26:55 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r413606 [7/9] - in /webservices/axis2/trunk/c: include/ modules/core/addr/ modules/core/clientapi/ modules/core/clientapi/diclient/ modules/core/context/ modules/core/deployment/ modules/core/engine/ modules/core/receivers/ modules/core/tra... Date: Mon, 12 Jun 2006 08:26:34 -0000 To: axis2-cvs@ws.apache.org From: damitha@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060612082655.3AC011A985B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: webservices/axis2/trunk/c/xml_schema/include/xml_schema/axis2_xml_schema_xpath.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/include/xml_schema/axis2_xml_schema_xpath.h?rev=413606&r1=413605&r2=413606&view=diff ============================================================================== --- webservices/axis2/trunk/c/xml_schema/include/xml_schema/axis2_xml_schema_xpath.h (original) +++ webservices/axis2/trunk/c/xml_schema/include/xml_schema/axis2_xml_schema_xpath.h Mon Jun 12 01:26:30 2006 @@ -27,8 +27,8 @@ */ #include -#include -#include +#include +#include #include /** @defgroup axis2_xml_schema_xpath Xml Schema Xpath Modified: webservices/axis2/trunk/c/xml_schema/samples/test_schema.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/samples/test_schema.c?rev=413606&r1=413605&r2=413606&view=diff ============================================================================== --- webservices/axis2/trunk/c/xml_schema/samples/test_schema.c (original) +++ webservices/axis2/trunk/c/xml_schema/samples/test_schema.c Mon Jun 12 01:26:30 2006 @@ -25,8 +25,8 @@ axis2_char_t *filename) { axis2_xml_reader_t *xml_reader = NULL; - axis2_om_stax_builder_t *om_builder = NULL; - axis2_om_document_t *om_doc = NULL; + axiom_stax_builder_t *om_builder = NULL; + axiom_document_t *om_doc = NULL; axis2_xml_schema_collection_t *schema_collection = NULL; axis2_xml_schema_t *schema = NULL; @@ -35,11 +35,11 @@ if(!xml_reader) return AXIS2_FAILURE; - om_builder = axis2_om_stax_builder_create(env, xml_reader); + om_builder = axiom_stax_builder_create(env, xml_reader); - om_doc = axis2_om_document_create(env, NULL, om_builder); + om_doc = axiom_document_create(env, NULL, om_builder); - AXIS2_OM_DOCUMENT_BUILD_ALL(om_doc, env); + AXIOM_DOCUMENT_BUILD_ALL(om_doc, env); schema_collection = axis2_xml_schema_collection_create(env); --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org