Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
"
"
at the below line:
Client.TriggerEDXTask(new Guid(), Taskname, Taskpassword, "", new string[0]);
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.