How can i put a parameter in an Ivylink like this: in.url = ivy.html.startref("Start Processes/Start/start2.ivp"); This link will be called in a mail by a User and starts a process. asked 22.04.2015 at 09:03 Florian Hitz |
To add a parameter to a process link, append them to the link at the end and ensure the values are encoded. Example: in.url = ivy.html.startref("Start Processes/Start/start2.ivp") +"?myString=" + java.net.URLEncoder.encode("Hello Wörld") + "&myNumber=123" The result will be: http://.../start2.ivp?myString=Hello+W%F6rld&myNumber=123 Please note, that the Request Start element must pass the request/input parameter to the process data too: answered 22.04.2015 at 10:06 Flavio Sadeghi ♦♦ Now it works, thanks a lot :)
(22.04.2015 at 10:34)
Florian Hitz
|
Once you sign in you will be able to subscribe for any updates here
By RSS:Markdown Basics
Tags:
Asked: 22.04.2015 at 09:03
Seen: 2,845 times
Last updated: 22.04.2015 at 10:34