Hello,
I am trying to pass groups with a web ticket so that users can only see content corresponding to
their Group.
So in the web ticket php script I pass this xml:
<?xml version="1.0"?><Global method="GetWebTicket"><UserId>MYUSER</UserId><GroupList><string>GROUP0</string></GroupList><GroupsIsNames>true</GroupsIsNames></Global>
or
<?xml version="1.0"?><Global method="GetWebTicket"><UserId>MYUSER</UserId><GroupList><GROUP>GROUP0</GROUP></GroupList><GroupsIsNames>true</GroupsIsNames></Global>
and in my Section Access I have:
Section Access;
LOAD * INLINE [
ACCESS, NTNAME, GROUP
USER, MYUSER, GROUP001
USER, MYUSER2, GROUP001
];
Section Application;
LOAD * INLINE
[GROUP
GROUP001
GROUP002
];
As I'm passing GROUP0 I would expect to see content based on GROUP0.
But this doesn't happen and I see all content filtered by GROUP001 (as if the GroupList inside xml doesn't do anything) So I wonder what's the use of passing groups in the xml. Or maybe something is wrong with what I did (is it correct to use <string> in the xml
as I did?).
I am using web ticketing configured with DMS authorization and Custom User authentication
and QV11 with IIS