Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Service key is missing

Hello all,

I have created a task in publisher and set a trigger for EDX execution.

Now I have created a web application to trigger this task using qlikview 11 EDX.

But am getting error as

"

Service key is missing

"

at the below line:

Client.TriggerEDXTask(new Guid(), Taskname, Taskpassword, "", new string[0]);

10 Replies
Anonymous
Not applicable
Author

Make sure you have added below highlighted line in bold in your config file.

<client>

      <endpoint address="http://<servername>:4799/QMS/Service" binding="basicHttpBinding"

        bindingConfiguration="BasicHttpBinding_IQMS" contract="QMSBackendService.IQMS"

        name="BasicHttpBinding_IQMS" behaviorConfiguration="ServiceKeyEndpointBehavior" />

      <endpoint address="http://<servername>:4799/ANY/Service" binding="basicHttpBinding"

        bindingConfiguration="BasicHttpBinding_IQTService" contract="QMSBackendService.IQTService"

        name="BasicHttpBinding_IQTService" behaviorConfiguration="ServiceKeyEndpointBehavior" />

    </client>

This solved this problem for me.