The method is allow to call without the CONID parameter but I also tried with CONID but result is same
tserverConfig = new Genesyslab.Platform.Commons.Connection.Configuration.PropertyConfiguration();
tserverConfig.UseAddp = true;
tserverConfig.AddpServerTimeout = 10;
tserverConfig.AddpClientTimeout = 10;
tserverConfig.AddpTrace = "both";
tserverEndpoint = new Genesyslab.Platform.Commons.Protocols.Endpoint("T-Server", TServerHost, TServerPort, tserverConfig);
tserverProtocol = new Genesyslab.Platform.Voice.Protocols.TServerProtocol(tserverEndpoint);
//tserverConfig.IsLoggerInitialized
tserverProtocol.Open();
tserverProtocol.Received += TserverProtocol_Received;
Genesyslab.Platform.Voice.Protocols.TServer.Requests.Queries.RequestQueryServer requestQueryServer =
Genesyslab.Platform.Voice.Protocols.TServer.Requests.Queries.RequestQueryServer.Create();
Genesyslab.Platform.Commons.Protocols.IMessage respondingEvent0 = tserverProtocol.Request(requestQueryServer);
Genesyslab.Platform.Voice.Protocols.TServer.Requests.Queries.RequestQueryCall requestQueryCall =
Genesyslab.Platform.Voice.Protocols.TServer.Requests.Queries.RequestQueryCall.Create("5115",
((Genesyslab.Platform.Voice.Protocols.TServer.Events.EventServerInfo)respondingEvent0).ConnID, Genesyslab.Platform.Voice.Protocols.TServer.CallInfoType.StatusQuery);
//Genesyslab.Platform.Voice.Protocols.TServer.Requests.Queries.RequestQueryCall.Create();
Genesyslab.Platform.Commons.Protocols.IMessage respondingEvent = tserverProtocol.Request(requestQueryCall);
switch (respondingEvent.Id)
{
case Genesyslab.Platform.Voice.Protocols.TServer.Events.EventError.MessageId:
break;
case Genesyslab.Platform.Voice.Protocols.TServer.Events.EventPartyInfo.MessageId:
break;
default:
break;
}