Hi, I am trying to use a Python script to obtain user info of my DACS site vs WS call. I got the below error back,
<?xml version=\'1.0\' encoding=\'UTF-8\'?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:getDacsUserDefinitionBulkResponse xmlns:ns2="http://dacsWebService.rfa.reuters.com/"><return><aResult><mResultText>FAILURE</mResultText><mResultCode>1000</mResultCode><mErrorText>Invalid Connection to DACS System</mErrorText></aResult></return></ns2:getDacsUserDefinitionBulkResponse></S:Body></S:Envelope>'
I can not figure out what's wrong in the request. It appeared that WS recognized my request is for "getDacsUserDefinitionBulk". What's that "Invalid Connection to DACS System"?
and my SOAP xml is as followed
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<getDacsUserDefinitionBulk xmlns="http://dacsWebService.rfa.reuters.com/">
<!-- Optional -->
<loginAttribute xmlns="">
<aAdministratorName>
<mAdministratorName>XXX</mAdministratorName>
</aAdministratorName>
<aAdministratorPassword>
<mAdministratorPassword>YYY</mAdministratorPassword>
</aAdministratorPassword>
</loginAttribute>
<!-- Optional -->
<siteUserList xmlns="">
<mSite>USA</mSite>
<aDacsUserList>
<mDacsUser>zzz</mDacsUser>
<mDacsUser>aaa</mDacsUser>
</aDacsUserList>
</siteUserList>
</getDacsUserDefinitionBulk>
</Body>
</Envelope>
~