Genesys CTI User Forum
Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: mmullings on January 25, 2009, 07:29:32 AM
-
Hi All
I am writing a service that connects to the Config Server but I keep getting the message: "Application not found"
I checked the Config Server Console and I see the error:
Configuration Server Error : Error [CFGAppSecurityViolat
ion], object [CfgApplication], property [DBID] Description Application not found
I have created a template type "ThirPartyApp" called customservice and application called "MyService" based on it. I have also verified the application "MyService" as in fact created in the cfg_application table. The code is as follows for 7.2 .NET SDK:
tServerProtocol = new ConfServerProtocol(
new Endpoint(
tServerName,
tServerUri));
tServerProtocol.ClientType = ConfServerClientType.ThirdPartyApp;
tServerProtocol.ClientName = "MyService";
tServerProtocol.UserName = "default"; efault";
tServerProtocol.UserPassword = "password"; tServerProtocol.Open();
Thanks nad advance
-
Hi,
Could you post here Configuration Server debug log (from initial connection to error occurrence) and and version of used Platform SDK?
R.
-
We had a similar problem about two years ago... Let me dig through our journals and see what was the cause! But it was something very trivial (like application type had to be something else...)
-
Thanks guys for your help
I found out the problem was a result of an incorrect API call I made after cerating the link.
Thanks a bunch!
-
Just for the record: what was the correct call?
-
The port above was actually correct. The problem was with an ilegal call I made afterwards.
Thx