[esb-issues] [JBoss JIRA] Reopened: (JBESB-3391) SoapUIClientService transforms targeted at #document fragment are lost because SoapUIClientServicealready holds a ref to the old DOM Document root element

David Ward (JIRA) jira-events at lists.jboss.org
Mon Sep 27 12:16:28 EDT 2010


     [ https://jira.jboss.org/browse/JBESB-3391?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Ward reopened JBESB-3391:
-------------------------------



Need to fix product/.classpath Eclipse file related to this issue.

> SoapUIClientService transforms targeted at #document fragment are lost because SoapUIClientServicealready holds a ref to the old DOM Document root element
> ----------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: JBESB-3391
>                 URL: https://jira.jboss.org/browse/JBESB-3391
>             Project: JBoss ESB
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: Transformation Service
>    Affects Versions: 4.9
>            Reporter: Tom Fennelly
>            Assignee: Tom Fennelly
>             Fix For: 4.9 CP1
>
>
> Fix is very easy.... just modify the SoapUIClientService.buildSOAPMessage() where if calls Smooks ... as follows... 
> From...
>         if(smooksResource != null) {
>             applySmooksTransform(smooksResource, messageDoc);
>         }
> To...
>         if(smooksResource != null) {
>             applySmooksTransform(smooksResource, messageDoc);
>             // reassign the docRoot variable after transform... in case it was replaced by a #document transform...   
>             docRoot = messageDoc.getDocumentElement();
>         }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the esb-issues mailing list