次のように、ラバの流れにいくつかのカスタム要素を追加したいと思います。
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:custom="http://www.example.com/schema/custom"
xsi:schemaLocation="
http://www.example.com/schema/custom file:/example/schema/custom.xsd">
<flow name="myFlow">
<custom:template name="generic-xml" type="flow"/>
<custom:template name="file" type="message-source"/>
</flow>
</mule>
これを行うことは可能ですか?はいの場合、これを達成する方法は?
前もって感謝します。