I am trying to use the XML API so to start small I wrote a small perl script that would send one command to the server, the command that I sent was
<?xml version="1.0" encoding="UTF-8"?>
<app>
<authentication>
<id>is-crmtest-1.mdtsoft.com</id>
<clientId>ws-pwd-1</clientId>
Code removed but it did match
<systemId>1</systemId>
</authentication>
<transaction id="1">
<account action="select">
<name>MDT Software</name>
</account>
</transaction>
</app>
I have set up the client ws-pwd-1 with the code (cut and paste) being the same
the responce was
<?xml version="1.0" encoding="UTF-8"?>
<aspcfs>
<response>
<status>1</status>
<errorText>Not authorized</errorText>
</response>
</aspcfs>
Dose this mean that my authentication did work but that I need to add ws-pwd-1 to some role or what else is wrong
thanks.