hello,

i want to pass some parameters in the URL via GET method to my application. for example:

http://domain.xy/ivy/pro/designer/project/15399C0297AC05B0/start.ivp?jobId=123211

how can i access them in axon ivy? (jobId in my example). what i've found so far is:

Map<String, String> params = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();
String jobId = params.get("jobId");

but how can i use it in axon ivy?

thank you for your answers.

asked 11.04.2016 at 15:23

joha0123's gravatar image

joha0123
(suspended)
accept rate: 0%


On the StartRequest event element you can declare the jobId as parameter. To use it later in the process you can map the parameter to the data of the current process.

alt text

link

answered 11.04.2016 at 15:34

Reguel%20Wermelinger's gravatar image

Reguel Werme... ♦♦
9.4k31958
accept rate: 70%

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:

×79
×11
×2

Asked: 11.04.2016 at 15:23

Seen: 2,481 times

Last updated: 11.04.2016 at 15:34