I am running into an issue logging into CUC. I am able to login a handful of time and then start getting System error -27001. I am using ASP.NET VS Pro 2013. The webpage I am using refreshes every 15 seconds, so I am thinking it has something to do with the frequency of logins.
Here is the code
UnityConnectionServerOdbcSdk server = new UnityConnectionServerOdbcSdk("TestApplication");
var res = server.LoginDatabaseBlocking("10.xx.xx.xx", "wallboard", "xxxxxx");
if (res.Successful == false)
{
return;
}
Here is the error
Error=The login attempt failed.
System error -27001 This usually means the user name or password are wrong or th
at they correspond to a user that does not have the Remote Database Access role
assigned to them or that the user's password has expired or is set to require a
reset at next login or the account has been locked.
Make sure Connection has been properly configured to allow for remote logins. S
ee the 'Troubleshooting Tips' section in the help file for more details on this
and other potential issues that could cause connection failures.
Any help on how I can resolve this would be greatly appreciated,
Sean