SOAPDocumentImpl calls MessageElement constructor with wrong arguments
----------------------------------------------------------------------

         Key: AXIS-2365
         URL: http://issues.apache.org/jira/browse/AXIS-2365
     Project: Apache Axis
        Type: Bug
  Components: SAAJ  
    Reporter: Changshin Lee


SOAPDocumentImpl.createElement(String) calls 

new MessageElement("", prefix, localname)

, which is wrong in terms of the declaration of the constructor

public MessageElement(String localPart, String prefix, String namespace)

It should be

new MessageElement(localname, prefix, "")

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to