URL Launcher
You can use UrlLauncher to launch any URL.
UrlLauncher is provider agnostic. Items may belong to any connector.
Action name can be anything.
UrlLauncher expects the following property:
● url (mandatory)
URL to be launched
All other properties will be passed as name=URL encoded value to the target URL.
Following is the definition of an action that launches a URL my.web.com and passes to it the parameter workitem_id, which is filled with the work item ID during run time:
<Action name="launchUrl" handler="UrlLauncher"> <Properties> <Property name="url" value="http://my.web.com"/> <Property name="workitem_id" value="${item.externalId}"/> </Properties> </Action> |