Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 21260 invoked from network); 11 Aug 2005 04:54:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 11 Aug 2005 04:54:15 -0000 Received: (qmail 20906 invoked by uid 500); 11 Aug 2005 04:54:13 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 20703 invoked by uid 500); 11 Aug 2005 04:54:13 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 20690 invoked by uid 99); 11 Aug 2005 04:54:12 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 10 Aug 2005 21:54:12 -0700 Received: (qmail 21170 invoked by uid 65534); 11 Aug 2005 04:54:12 -0000 Message-ID: <20050811045412.21169.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r231395 - /webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/MIMEOutputUtils.java Date: Thu, 11 Aug 2005 04:54:12 -0000 To: axis-cvs@ws.apache.org From: thilina@apache.org X-Mailer: svnmailer-1.0.3 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: thilina Date: Wed Aug 10 21:54:06 2005 New Revision: 231395 URL: http://svn.apache.org/viewcvs?rev=231395&view=rev Log: setting the correct startinfo paramater for the SOAP1.2 in MTOM Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/MIMEOutputUtils.java Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/MIMEOutputUtils.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/MIMEOutputUtils.java?rev=231395&r1=231394&r2=231395&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/MIMEOutputUtils.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/MIMEOutputUtils.java Wed Aug 10 21:54:06 2005 @@ -138,7 +138,7 @@ sb.append("; "); sb.append("start=\"<" + contentId + ">\""); sb.append("; "); - sb.append("start-info=\"text/xml; charset=" + charSetEncoding + "\""); + sb.append("start-info=\"application/soap+xml; charset=" + charSetEncoding + "\""); return sb.toString(); }