If I have an esb.xml file with a notifier as seen below, if I edit the xml file using the source tab and save, if I then return to the file and edit using the tree tab(forms), the <queue> element for the target elements get lost.
<actions mep="RequestResponse">
<action class="org.jboss.soa.esb.actions.Notifier" name="SendResponseNotifier">
<property name="okMethod" value="notifyOK"/>
<property name="exceptionMethod" value="notifyError"/>
<property name="destinations">
<NotificationList type="err">
<target class="NotifyQueues">
<queue jndiName="queue/MincomJMS_reply"/>
</target>
</NotificationList>
<NotificationList type="ok">
<target class="NotifyQueues">
<queue jndiName="queue/MincomJMS_reply"/>
</target>
</NotificationList>
</property>
</action>