Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
litalrok7
Contributor III
Contributor III

Using EDX without user password - QlikView

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

3 Replies
MK9885
Master II
Master II

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.

litalrok7
Contributor III
Contributor III
Author

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

litalrok7
Contributor III
Contributor III
Author

but thank you for your answer unfortunately it is not suitable in my case.