You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Jarek Gawor (JIRA)" <ji...@apache.org> on 2008/12/16 23:06:44 UTC

[jira] Resolved: (GERONIMO-4029) Transforming from DOM Document to SAAJ SOAPBody throws TransformerException

     [ https://issues.apache.org/jira/browse/GERONIMO-4029?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jarek Gawor resolved GERONIMO-4029.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 2.2
         Assignee: Jarek Gawor

Resolving as this problem was fixed in Axis2 and Geronimo 2.2 will use Axis2 1.5 which contains a fix for this problem.



> 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
>            Assignee: Jarek Gawor
>             Fix For: 2.2
>
>         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.