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