I'm designing a simple business process using Tibco Designer. Basically, it's like
Receive xml data via JMS --> Extract certain data from xml and modify it --> send back the modified xml
So my question is, which activity from Palettes should I choose to implement the manual task ?
For example:
original.xml
<xml>
<sender>Jason</sender>
<message>I am hungry</message>
</xml>
modified.xml
<xml>
<sender>Jason</sender>
<message>I am hungry</message>
<modifiedMessage>I am so hungry!!!!!<modifiedMessage>
</xml>
So I want to extract from original.xml and maybe show it on screen, and then ask for user's input for modified message. After user put in message, we will add it as another element and send the modified.xml to other destination.