PureEngage On-Premises

 View Only

Sign Up

  • 1.  Interaction Server Protocol not receiving events

    Posted 01-16-2017 11:43
    I'm a little stuck and am hoping that someone can help.  

    I'm creating a proof of concept that monitors interactions and does something based on the interaction received. Using the SDK, I can connect to the conf server, read and write person to the server and capture uncolicited events using the protocol.received event.

    I'm now trying to just listen for events that are triggered when an email is received.  I can connect to the interaction server and create a new interaction if I want.  Log files show a successful connection.  If I create a new email interaction, it gets routed to the correct agent.  I don not recive any events utilising the InteractionServerProtocol.Received event handler method.

    Is there anything that I'm missing?  Its as if the interaction server doesnt understand that it needs to send events to my service and there is nothing in the documentation or online that appears to help.

    Any assistance would be most appreciated.


  • 2.  RE: Interaction Server Protocol not receiving events

    Posted 01-18-2017 13:53
    Post your code in which you are registering the event consuming. 


  • 3.  RE: Interaction Server Protocol not receiving events

    Posted 01-19-2017 09:14
    So I've managed to get this working with an example a colleague found by doing the following:

    InteractionServerProtocol.Send(RequestStartPlaceAgentStateReportingAll.Create()).

    This subscribes to all events from the interaction server. How do I limit this to just the event that I want to receive?