Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Trigger EDX

Hi,

I developed a ASP.NET webpage that triggers the Qlikview EDX webservice. I need to enter two variables in the reload of the document.

Is this possible in this webservice?

TIA,

Tim

3 Replies
StefanBackstrand
Partner - Specialist
Partner - Specialist

Yes. I don't remember the exact XML node structure, but you can send one or more variables to the document via EDX. The SR3 manual has been extended on that subject on my own request. Look it up in the QVS Server Reference manual.

Note that this is from a QVS 9 perspective.

StefanBackstrand
Partner - Specialist
Partner - Specialist

I need to correct this answer, since I saw that this has not been included in the QVS 9 SR3 manual for some reason. I will re-request that bug and see what's happened.

Meanwhile; the XML node structure for variables in the EDX call in QVS 9 is he following:

<i_VariableName>VarName</i_VariableName>
<i_VariableValueList>
<string>value 1</string>
<string>value 2</string>
</i_VariableValueList>

There also seems to be a bug that actually only allows the first value to be recorded, so this does not work for multiple variables, yet. I will record that as a bug as well.

Not applicable
Author

Thank you!