callback listener
Tuesday, June 21, 2016 at 10:06amHello, I'm trying to figure out how to program a page on my IIS server to handle event notifications. My research has turned up various topics and code snippets (jQuery, VB.NET, C#, java servlet, cross-domain, etc) but I'm not sure how to put it all together in order to simply receive ("get") the posted json payload from esign. Any suggestions would be greatly appreciated.
Reply to: callback listener
Wednesday, June 22, 2016 at 11:10amReply to: callback listener
Wednesday, June 22, 2016 at 11:29amReply to: callback listener
Thursday, June 23, 2016 at 10:42ameslData.Message: " + eslData.Message; str += "
eslData.DocumentID: " + eslData.DocumentID; // log and/or email the data... } } } ____________________________________________ [root]\Model\EsignEvent.cs: ____________________________________________ namespace EsignCallbackListener.Model { public class EsignEvent { public string EventName { get; set; } public string SessionUser { get; set; } public string PackageID { get; set; } public string Message { get; set; } public string DocumentID { get; set; } } } ____________________________________________ [root]\web.config ____________________________________________