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%20Hitz's gravatar image

Florian Hitz
(suspended)
accept rate: 0%


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: alt text

link

answered 22.04.2015 at 10:06

Flavio%20Sadeghi's gravatar image

Flavio Sadeghi ♦♦
(suspended)
accept rate: 75%

Now it works, thanks a lot :)

(22.04.2015 at 10:34) Florian Hitz Florian%20Hitz's gravatar image
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×37
×34

Asked: 22.04.2015 at 09:03

Seen: 2,743 times

Last updated: 22.04.2015 at 10:34