DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16269>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16269

WSIF JMS Provider - JMS Message incorrectly uses the message namespace to compute the 
part QName

           Summary: WSIF JMS Provider - JMS Message incorrectly uses the
                    message namespace to compute the part QName
           Product: Axis-WSIF
           Version: current (nightly)
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Basic Architecture
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


There were a few areas within the class that exhibited the problem.  Essentially 
the code:

                javax.xml.namespace.QName partQName =           
                    new javax.xml.namespace.QName(
                        fieldMessageModel.getQName().getNamespaceURI(),
                        partModel.getName());

appeared to be incorrect.

A proposed solution is the following:

      javax.xml.namespace.QName partQName = partModel.getElementName() != null?
       partModel.getElementName():partModel.getTypeName();

Reply via email to