Avatar

Level 1

I am trying to setup tests for a customer using SoapUI product as a quick test bench. I am successful in calling the session using the admin account and password to get logged in and it returns the sessionToken and securityToken.  I then try to call ExecuteQuery and with the sessionToken that I received from the prior call.  I can and error:  XTK-170019 Access denied. I saw some posts on security zones but I don't have it on this server, so I couldn't test that.  Does anyone have an idea what is the problem?  This environment is ACC fully hosted.  Here is the soap payload:

 

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:xtk:queryDef">
<soapenv:Header/>
<soapenv:Body>
<urn:ExecuteQuery>
<urn:sessiontoken>took it out for security</urn:sessiontoken>
<urn:entity>
<queryDef operation="select" schema="nms:recipient">
<select>
<node expr="@email"/>
<node expr="@lastName"/>
<node expr="@firstName"/>
</select>
</queryDef>
</urn:entity>
</urn:ExecuteQuery>
</soapenv:Body>
</soapenv:Envelope>

 

Thanks!