Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey Everyone,
I'm using QlikView and trying to trigger a reload task using EDX with the solution offered in this forum.
https://community.qlik.com/docs/DOC-3024
i ran into an issue that the user's password is not available and i can't use this
Client = new QMSClient("BasicHttpBinding_IQMS", QMSURL);
WindowsClientCredential creds = Client.ClientCredentials.Windows;
creds.ClientCredential.UserName = "myadminaccount";
creds.ClientCredential.Password = "mypassword";
Is there an option to get authenticate using Active Directory user?
or other solutions will be highly appreciated!!
Thank you all in advance!!
Lital
I've never worked on EDX...but we can trigger a task from QMC alone and don't need EDX.
You can assign daily timed task/dependencies upon successful or failure of particular qvw/write a script to create a loop so that your QVW refreshes based upon given time and checks for new data in data base.
I've triggers placed too but not by EDX or widows scheduler.
I'm developing a QV extension that has a feature which enables the user to reload the model whenever he likes and I'm using the EDX. so I can't use the QMC
but thank you for your answer unfortunately it is not suitable in my case.