Hello,
i am trying to catch the response sent from Send Custom Notification toolstep from handler in my web application. But not sure how to do it. can anybody please share an example how to catch the response.
i Have the following code:
CustomNotification notification = new CustomNotification(session);
CustomMessageHeader header = new CustomMessageHeader(CustomMessageType.ServerNotification, strObjectID, strEventID);
CustomRequest request = new CustomRequest(header);
string[] arr = { strPhone, strData };
request.Write(arr);
notification.SendServerRequest(request);
I need to capture the response from the handler in my application. Please help!
Thanks in advance.
Shilpa