I am still having problem getting the URL to work. Do you have any advice for me? It has to be something I've done. I desparately need to invoke external URL since InfoCaptor is a passive tool and I need to carry out some action. The only way is to invoke an existing web-application with the required parameters byinvoking a URL.
The SQL copied for the edit window that corresponds to the captured screen is:
select t.display_name as task_name, t.id as task_id,
IF(t.user_defined_flag = 0, 'false', 'true') as user_defined,
IF(t.optional_flag = 0, 'false', 'true') as optional,
CONCAT('http://', t.system_query) as Link
from task t, process p, process_task a
where a.process_id = p.id
and p.id = param<Process Id, 0>
and a.task_id = t.id;