您不能仅从企业服务中挂断当前呼叫。WDE 为此提供 API。您可以从开发人员指南文档中查看。实际上,您有两种选择来实现这一目标。第一种使用 WDE API 命令调用的方法。第二种方式使用通用 SDK (PSDK) 挂断当前通话。首先你需要收集当前调用的interactionId。之后可以调用这样的命令,
commandManager.CommandsByName["InteractionVoiceReleaseCall"].Insert(0, new CommandActivator()
{
CommandType = typeof(CustomCommand.ReleaseCall),
Name = "InteractionVoiceReleaseCall"
});
您可以从 WDE api 指南中找到所有命令列表。在您的命令类型(类)上,您必须返回布尔值。如果您返回 false,则可以继续,发送 true 就像中断命令一样。
或者你可以直接执行这样的命令;
IDictionary<string, object> parameters = new Dictionary<string, object>();
parameters.Add("CommandParameter", interaction);
parameters.Add("Reasons", reasons);
parameters.Add("Extensions", extensions);
commandManager.GetChainOfCommandByName("InteractionVoiceReleaseCall").Execute();
作为一个 SDK 认证的开发者,我总是更喜欢 PSDK(universal genesys sdk)。您可以检索当前的 SIP 服务器连接并向其发送请求。喜欢这个代码块
IChannelService channelService = agent.EntrepriseService.Resolve<IChannelService>("channelService");
IClientChannel tServerChannel = channelService.ListChannels<Genesyslab.Platform.Voice.Protocols.TServerProtocol>().FirstOrDefault();
channelService.RegisterEvents(tServerChannel, new Action<Genesyslab.Enterprise.Model.Channel.IClientChannel>(ChannelEvent));
TServerProtocol tServerProtocol = tServerChannel.Protocol as TServerProtocol;
在此之后,您在 tserverPorotocol 对象上有当前连接。然后您可以向 SIP 服务器发送请求。
像这样:
Genesyslab.Platform.Voice.Protocols.TServer.Requests.Voice.RequestReleaseCall releaseCall = Genesyslab.Platform.Voice.Protocols.TServer.Requests.Voice.RequestReleaseCall.Create();
releaseCall.ThisDN = "7000"; //(for example)(you can retrieve agent's DN from agent object)
releaseCall.ConnID = interaction.ConnectionId // you can retrieve from interactionhandler event.
tServerProtocol.Send(releaseCall);
//or tServerProtocol.Request(releaseCall); for async request. request return a ack message from the server.
我试图解释基础知识。我希望它有帮助。如果您有关于 sip 等的问题,请告诉我。