Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 21309 invoked from network); 14 Oct 2008 12:26:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Oct 2008 12:26:35 -0000 Received: (qmail 13359 invoked by uid 500); 14 Oct 2008 12:26:35 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 13344 invoked by uid 500); 14 Oct 2008 12:26:35 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 13333 invoked by uid 99); 14 Oct 2008 12:26:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Oct 2008 05:26:35 -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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Oct 2008 12:25:37 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 3E0EC234C21F for ; Tue, 14 Oct 2008 05:25:44 -0700 (PDT) Message-ID: <794575309.1223987144253.JavaMail.jira@brutus> Date: Tue, 14 Oct 2008 05:25:44 -0700 (PDT) From: "Manjula Peiris (JIRA)" To: axis-c-dev@ws.apache.org Subject: [jira] Created: (AXIS2C-1275) Axiom default namespace serialization and deserialization are not compatible MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Axiom default namespace serialization and deserialization are not compatible ---------------------------------------------------------------------------- Key: AXIS2C-1275 URL: https://issues.apache.org/jira/browse/AXIS2C-1275 Project: Axis2-C Issue Type: Bug Components: xml/om Affects Versions: Current (Nightly) Reporter: Manjula Peiris For the following code axiom generates the xml given below. ns1 = axiom_namespace_create (env, "http://example.org/", NULL); ping_ele = axiom_element_create(env, NULL, "PingResponse", ns1, &ping_node); echo_om_ele = axiom_element_create(env, ping_node, "echoStringResponse", NULL, &echo_om_node); text_om_ele = axiom_element_create(env, echo_om_node, "EchoStringReturn", NULL, &text_om_node); axiom_element_set_text(text_om_ele, env, text, text_om_node); text But when signing this om the child elements are not canonicalized with the namaspaces because those elements are created with NULL namespaces. But the the child elements inherit the default namespaces. So signature verification fails. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org For additional commands, e-mail: axis-c-dev-help@ws.apache.org