Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Enumerate bookmarks and change owner

Hi all,
i need to enumerate server bookmarks and set bookmark owner with different one, working with QlikView server, ideas?

Thank you

corrado

1 Reply
Not applicable
Author

Problem solved.

I've used an aspx page that call the XS webservice and created a button in the application that launch the aspx page, see example code



XS.WebServiceHelper2 l_XSWS = new XS.WebServiceHelper2();
l_XSWS.UseDefaultCredentials = true;
//l_XSWS.Url = "http://192.168.11.128:8082/qtxs.asmx";
XS.RequestEDXResult result = l_XSWS.RequestEDX2(EDXJOB, true, EDXPWD);
if (result.StartJobResult != XS.eStartJobResult.JobWasSuccessfullyStarted)
{
TextBox1.Text = "Failed to start : " + result.StartJobResult.ToString();
}<div>