You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "Guillaume Nodet (JIRA)" <ji...@apache.org> on 2007/03/21 16:20:32 UTC

[jira] Commented: (ODE-103) ServiceMixMapper mulfunction in ServiceMix 3.1 clustering mode (fow type = jms)

    [ https://issues.apache.org/jira/browse/ODE-103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482795 ] 

Guillaume Nodet commented on ODE-103:
-------------------------------------

Could you please provide the full stack trace of the exception so that we can determine the exact cause of this problem ?

> ServiceMixMapper mulfunction in ServiceMix 3.1 clustering mode (fow type =  jms)
> --------------------------------------------------------------------------------
>
>                 Key: ODE-103
>                 URL: https://issues.apache.org/jira/browse/ODE-103
>             Project: Ode
>          Issue Type: Bug
>          Components: JBI Integration
>    Affects Versions: Incubator
>         Environment: WIndowsXP Pro, ServiceMix 3.1
>            Reporter: Xuli
>
> 1. Set "ode-jbi.messageMapper=org.apache.ode.jbi.msgmap.ServiceMixMapper" in "ode-jbi.properties" of ODE
> 2. Set flowName="jms" in <sm:container> of servicemix.xml file, then startup ServiceMix 3.1 in clustering mode. 
> 3. send a request to BPEL service
> ODE will throw an exception when it receives a response of SP from NMR. The Normalized Message content sent to ServiceMixMapper.toODE() is a StringSource, while the default TransformerFactory set by following lines is Xalan 2.7 in my machine
> ---------------------------------------------------------------------------------------------------
>     protected BaseXmlMapper() {
>         _transformerFactory = TransformerFactory.newInstance();
>     }
> ---------------------------------------------------------------------------------------------------
> Xalan throws NAMESPACE_ERR while doing identity transformation with StringSource.
> I replaced the above lines with
> ---------------------------------------------------------------------------------------------------
>     protected BaseXmlMapper() {
>         _transformerFactory = new net.sf.saxon.TransformerFactoryImpl();
>     }
> ---------------------------------------------------------------------------------------------------
> to explicitly instantiate a Saxon TransformerFactory, then solved the problem

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.