Hi,
We are currently working in Content WebServices integration using C# for Microsoft.NET 4.0. We have been receiving an error message after the authentication process. The error message is “Unable to authenticate: com.opentext.ecm.services.cap.InvalidTokenArgumentException: No valid token set for this call”
Our code is something similar to this:
Authentication.AuthenticationClient authClient = new Authentication.AuthenticationClient();
DocumentManagement.OTAuthentication dmAuth = new DocumentManagement.OTAuthentication();
DocumentManagement.DocumentManagementClient dm = new DocumentManagement.DocumentManagementClient();
string token = authClient.AuthenticateUser(userName, password); // OK. For example returns "Cde9vBVWEgA%2F0AuwGqzRQ3ncPODtxtrrV7vANhAmn4U%3D"
dmAuth.AuthenticationToken = token; // OK
DocumentManagement.Node folder = dm.GetNode(dmAuth, 90646); // ERROR
What could be the problem? Is a deploy or develop problem?
Thanks in advance
Marcelo