Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 18972 invoked from network); 23 Apr 2008 19:23:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Apr 2008 19:23:17 -0000 Received: (qmail 63494 invoked by uid 500); 23 Apr 2008 19:23:18 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 63478 invoked by uid 500); 23 Apr 2008 19:23:18 -0000 Mailing-List: contact cxf-issues-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-issues@incubator.apache.org Received: (qmail 63467 invoked by uid 99); 23 Apr 2008 19:23:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2008 12:23:18 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2008 19:22:33 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 82D97234C0FD for ; Wed, 23 Apr 2008 12:19:21 -0700 (PDT) Message-ID: <2113577459.1208978361534.JavaMail.jira@brutus> Date: Wed, 23 Apr 2008 12:19:21 -0700 (PDT) From: "Glen Mazza (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Created: (CXF-1545) DispatchOutDatabindingInterceptor apparently incorrectly using MessageFactory.createMessage() method MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org DispatchOutDatabindingInterceptor apparently incorrectly using MessageFactory.createMessage() method ---------------------------------------------------------------------------------------------------- Key: CXF-1545 URL: https://issues.apache.org/jira/browse/CXF-1545 Project: CXF Issue Type: Bug Components: Core Affects Versions: 2.0.5, 2.1 Reporter: Glen Mazza On line 345 of DispatchOutDatabindingInterceptor[1] the no-parameter version of SAAJ's MessageFactory.createMessage() is being called. However Sun's SAAJ 1.3 implementation does not allow that variant--in com.sun.xml.messaging.saaj.soap.MessageFactoryImpl, line 70, SAAJ will throw an UnsupportedOperationException() if you use that version. Sun requires the createMessage(MimeHeaders headers, InputStream in) version on line 79 of that same file. If I'm correct here, line 345 of this class needs to be rewritten to use this version. Version of SAAJ being used: System.setProperty("javax.xml.soap.MessageFactory", "com.sun.xml.messaging.saaj.soap.MessageFactoryImpl"); Maven: (same as CXF): com.sun.xml.messaging.saaj saaj-impl 1.3 javax.activation activation [1] http://tinyurl.com/6pvjxv -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.