Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 49886 invoked from network); 22 Jan 2007 13:09:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Jan 2007 13:09:06 -0000 Received: (qmail 3980 invoked by uid 500); 22 Jan 2007 13:09:12 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 3814 invoked by uid 500); 22 Jan 2007 13:09:11 -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 3803 invoked by uid 500); 22 Jan 2007 13:09:11 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 3800 invoked by uid 99); 22 Jan 2007 13:09:11 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jan 2007 05:09:11 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME 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, 22 Jan 2007 05:09:04 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 5DDEB1A981A; Mon, 22 Jan 2007 05:07:58 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r498603 - /webservices/axis2/trunk/c/rampart/include/oxs_c14n.h Date: Mon, 22 Jan 2007 13:07:58 -0000 To: axis2-cvs@ws.apache.org From: kaushalye@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070122130758.5DDEB1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kaushalye Date: Mon Jan 22 05:07:57 2007 New Revision: 498603 URL: http://svn.apache.org/viewvc?view=rev&rev=498603 Log: Adding c14n header. Thanks Dumindu for the effort Added: webservices/axis2/trunk/c/rampart/include/oxs_c14n.h Added: webservices/axis2/trunk/c/rampart/include/oxs_c14n.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/include/oxs_c14n.h?view=auto&rev=498603 ============================================================================== --- webservices/axis2/trunk/c/rampart/include/oxs_c14n.h (added) +++ webservices/axis2/trunk/c/rampart/include/oxs_c14n.h Mon Jan 22 05:07:57 2007 @@ -0,0 +1,68 @@ +/* + * Copyright 2004,2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef AXIS2_C14N_H +#define AXIS2_C14N_H + +/** @defgroup axis2c_c14n c14n + * @ingroup axis2_c14n + * XML Canonicalization (XML-C14N). + * @{ + */ + +/** + * @file axis2_c14n.h + * @brief + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + AXIS2_EXTERN axis2_status_t AXIS2_CALL + oxs_c14n_apply_stream( + const axis2_env_t *env, + const axiom_document_t *doc, + axis2_bool_t comments, + axis2_stream_t *stream, + const axis2_bool_t exclusive, + const axis2_array_list_t *ns_prefixes + ); + + AXIS2_EXTERN axis2_status_t AXIS2_CALL + oxs_c14n_apply ( + const axis2_env_t *env, + const axiom_document_t *doc, + const axis2_bool_t comments, + axis2_char_t **outbuf, + const axis2_bool_t exclusive, + const axis2_array_list_t *ns_prefixes + ); + +#ifdef __cplusplus +} +#endif +#endif /* AXIS2_C14N_H */ --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org