You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2002/11/15 22:20:44 UTC

DO NOT REPLY [Bug 14611] New: - Fault Detail access code inside SOAPFault operates on the detail objects NOT used in serialization.

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=14611>.
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=14611

Fault Detail access code inside SOAPFault operates on the detail objects NOT used in serialization.

           Summary: Fault Detail access code inside SOAPFault operates on
                    the detail objects NOT used in serialization.
           Product: Axis
           Version: current (nightly)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: Serialization/Deserialization
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: tarass@grandcentral.com


SOAPFault.addDetail() and SOAPFault.getDetail()have code that adds child 
elements, but those elements are never populated, or serialized. (See 
SOAPFault.outputImpl(context))

It is a little misleading since they *look* functional from outside.
All the fault Detail is stored within in AxisFault object, and must be modified 
through AxisFault object, and not SOAPFault.

P.S. Perhaps comment should say that they do nothing at the moment?