Genesys CTI User Forum

Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: mmullings on January 25, 2009, 07:29:32 AM

Title: Configuration Platform SDK problem
Post 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
Title: Re: Configuration Platform SDK problem
Post by: René on January 25, 2009, 08:47:04 PM
Hi,

Could you post here Configuration Server debug log (from initial connection to error occurrence) and and version of used Platform SDK?

R.
Title: Re: Configuration Platform SDK problem
Post by: victor on January 27, 2009, 12:24:17 AM
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...)
Title: Re: Configuration Platform SDK problem
Post by: mmullings on February 04, 2009, 09:41:34 PM
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!
Title: Re: Configuration Platform SDK problem
Post by: victor on February 05, 2009, 05:16:40 AM
Just for the record: what was the correct call?
Title: Re: Configuration Platform SDK problem
Post by: mmullings on February 26, 2009, 05:28:47 PM
The port above was actually correct. The problem was with an ilegal call I made afterwards.

Thx