Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
bl-jeremy
Contributor II
Contributor II

Check the Session Collaboration button through soap request

Hi all !

 

I'm trying to have the 'Session Collaboration' checkbox active through a soap request.

I've generated java code from the wsdl, and now I'm searching how to check this case.

 

I've already tried the following without success:

QMSClient.DocumentTask().getServer().getAccess().setEnableSessionCollaboration(true)

 

Does someone have a solution?

Thanks in advance

Labels (2)
33 Replies
Damien_V
Support
Support

Ok I tried that with {General,Server} and what I see in Fiddler is:

<a:Scope>General Server</a:Scope>

Maybe you can just try to separate each value with a space in your code, that may work.

 

If the issue is solved please mark the answer with Accept as Solution.
bl-jeremy
Contributor II
Contributor II
Author

That's what I did previously

<ns5:Scope xmlns:ns5="http://schemas.datacontract.org/2004/07/PIX.QMSAPI.DataObjects">General Reload Reduce Triggering</ns5:Scope>
Damien_V
Support
Support

Ok, now I understand why the other settings were working. I misunderstood that it was a name  for the task.

Collaboration is in the Server section, so you would need: 

<ns5:Scope xmlns:ns5="http://schemas.datacontract.org/2004/07/PIX.QMSAPI.DataObjects">General Reload Reduce Triggering Server</ns5:Scope>

 

If the issue is solved please mark the answer with Accept as Solution.
bl-jeremy
Contributor II
Contributor II
Author

It worked ! Thank you