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

Qliksense Task refresh

Dear All,

Iam developing a web Application to Reload the Qlik sense Task. I tried it many ways but ended with vain.

Could you please share me source code if you have to reload the Qliksense Task.

Thanks

Parthiban

Note: I have source code to reload the qliksense application using app ID.

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(@strQRS);

request.Method = "POST";

request.Headers.Add("X-Qlik-xrfkey", xrfkey);

request.Headers.Add("X-Qlik-User", @"UserDirectory=internal;UserId=sa_repository");
request.ContentType = "application/json";
request.ContentLength = 0;
request.Expect = "application/json";
request.ClientCertificates.Add(SenseCert);

HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream stream = response.GetResponseStream();
//Pass this to reload : app/9cc20a84-4c9b-4c66-9cf6-283a47ccf5f3/reload

Labels (1)
0 Replies