Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 9206 invoked from network); 19 May 2008 21:48:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 May 2008 21:48:21 -0000 Received: (qmail 26411 invoked by uid 500); 19 May 2008 21:48:18 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 26341 invoked by uid 500); 19 May 2008 21:48:17 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 26329 invoked by uid 99); 19 May 2008 21:48:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 May 2008 14:48:17 -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; Mon, 19 May 2008 21:47:39 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 93A9A234C114 for ; Mon, 19 May 2008 14:47:55 -0700 (PDT) Message-ID: <1153307696.1211233675597.JavaMail.jira@brutus> Date: Mon, 19 May 2008 14:47:55 -0700 (PDT) From: "Kevan Miller (JIRA)" To: dev@geronimo.apache.org Subject: [jira] Commented: (GERONIMO-4029) Transforming from DOM Document to SAAJ SOAPBody throws TransformerException In-Reply-To: <685215412.1211153876127.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/GERONIMO-4029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12598108#action_12598108 ] Kevan Miller commented on GERONIMO-4029: ---------------------------------------- Heh. Yeah, I was a little curious about that too... Jarek, Jeff, or Dims would know the gory details. IIUC, Axis2 requires the Axis2 SAAJ implementation. I'm not sure how tightly bound CXF is to the Sun RI. I would guess that it's a tight binding -- we have to do some switching to support the alternate SAAJ implementations. Another possibility is that it's just historical -- we had CXF integrated prior to Axis2... > Transforming from DOM Document to SAAJ SOAPBody throws TransformerException > --------------------------------------------------------------------------- > > Key: GERONIMO-4029 > URL: https://issues.apache.org/jira/browse/GERONIMO-4029 > Project: Geronimo > Issue Type: Bug > Security Level: public(Regular issues) > Components: webservices > Affects Versions: 2.0.2 > Environment: OS X, JDK 1.5, Geronimo 2.0.2 > Reporter: Arjen Poutsma > Attachments: saaj-test.zip > > > When running the following program within Geronimo: > {noformat} > MessageFactory messageFactory = MessageFactory.newInstance(); > Transformer transformer = TransformerFactory.newInstance().newTransformer(); > SOAPMessage message = messageFactory.createMessage(); > Document document = createDocument(); > SOAPBody body = message.getSOAPBody(); > transformer.transform(new DOMSource(document), new DOMResult(body)); > {noformat} > a TransformerException is thrown on the last line. The attached zip file contains a simple Servlet which can be used to reproduce this. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.