Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MULE 中有一个 xml,我使用拆分器将其拆分为两部分,我面临的问题是如何将相同的 xml 传递给每个拆分器?任何人都可以帮忙吗?
<mulexml:object-to-xml-transformer doc:name="Object to XML"/> <splitter1/> <splitter2/>
每个拆分器之后都有处理和出站端点。谢谢,拉胡尔
用来<all>做那个
<all>
<mulexml:object-to-xml-transformer doc:name="Object to XML"/> <all> <splitter1/> <splitter2/> </all>
<all>向您包含在其中的每个消息处理器发送相同的消息。