You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sh...@apache.org on 2009/10/13 08:14:59 UTC

svn commit: r824601 - /webservices/axis2/trunk/c/axiom/src/om/om_attribute.c

Author: shankar
Date: Tue Oct 13 06:14:59 2009
New Revision: 824601

URL: http://svn.apache.org/viewvc?rev=824601&view=rev
Log:
reverting qname to include prefix

Modified:
    webservices/axis2/trunk/c/axiom/src/om/om_attribute.c

Modified: webservices/axis2/trunk/c/axiom/src/om/om_attribute.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/om/om_attribute.c?rev=824601&r1=824600&r2=824601&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/src/om/om_attribute.c (original)
+++ webservices/axis2/trunk/c/axiom/src/om/om_attribute.c Tue Oct 13 06:14:59 2009
@@ -141,12 +141,9 @@
     {
         if(attribute->ns)
         {
-            /* Attribute qname should not include prefix */
             qname = axutil_qname_create(env, axutil_string_get_buffer(attribute-> localname, env),
-                axiom_namespace_get_uri(attribute->ns, env), NULL);
-            /*qname = axutil_qname_create(env, axutil_string_get_buffer(attribute-> localname, env),
                 axiom_namespace_get_uri(attribute->ns, env), axiom_namespace_get_prefix(
-                    attribute-> ns, env));*/
+                    attribute-> ns, env));
         }
         else
         {