Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 92790 invoked by uid 500); 16 Sep 2002 18:05:53 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 92781 invoked by uid 500); 16 Sep 2002 18:05:52 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 16 Sep 2002 18:05:51 -0000 Message-ID: <20020916180551.22366.qmail@icarus.apache.org> From: haddadc@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/java/src/org/apache/axis/message SOAPHeader.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N haddadc 2002/09/16 11:05:51 Modified: java/src/org/apache/axis/message SOAPHeader.java Log: backing out serializing the referenced instance objects in the header. There is no soap1.1 requirement to place the header referenced objects inside the header part. If an object was referenced from both the body and the header, two instances would be created, resulting in a larger soap message in addition to the creation of two server side objects. Revision Changes Path 1.58 +0 -2 xml-axis/java/src/org/apache/axis/message/SOAPHeader.java Index: SOAPHeader.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/message/SOAPHeader.java,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- SOAPHeader.java 16 Sep 2002 03:56:43 -0000 1.57 +++ SOAPHeader.java 16 Sep 2002 18:05:51 -0000 1.58 @@ -316,8 +316,6 @@ // Output this header element ((SOAPHeaderElement)enum.nextElement()).output(context); } - // Output multi-refs - context.outputMultiRefs(); // Output context.endElement(); }