Expand my Community achievements bar.

Link to completed form

Avatar

Level 1

Hopefully a simple question... LiveCycle ES2 with SP1...

When I send a custom email requesting task approval, I can provide a direct link to the form being approved by appending the taskID to the end of the URL, so:

http://server/workspace/Main.html?taskId=942

What I would like to do is include a link to the completed and approved form in a subsequent email sent out; however, once the form is approved the above link doesn't work, because the task has been approved.

How can I provide a link to the completed form?

1 Reply

Avatar

Level 10

This is quite difficult.

You might try the following option:

look at the following wsdl:

http://localhost:8080/soap/services/TaskManagerService?wsdl

You could see a web method named 'getForInstanceForTask' which accepts the taskId parameter.

You might need to write a jsp/.net web applciation to invoke this web method and return the PDF document.

So, In your email the link will be look like  http://youIIS_server_or_java_web_server/yourJSP_or_dotnetpage.aspx?taskId=12345

Make sense?

Nith