dhtmlxConnector and MVC 5

I downloaded and re-compiled the dhtmlxConnector for .net 4.6.1 and then tried to integrate it into an MVC 5 web app being developed.

I have run into a problem and just cannot figure out how to resolve it.

I run the application and break just after at the statements:

        scheduler.DataAction = VirtualPathUtility.ToAbsolute("~/Connector.ashx");
        scheduler.SaveAction = VirtualPathUtility.ToAbsolute("~/Connector.ashx");

If I look at the scheduler class I see that the value DataURL = /Appointments//Connector.ashx?

This is causing problems…I do not have a Connector.ashx view nor do I know how to create one. I did try and duplicate the Index view calling it IndexConnector and then adding the attribute [ActionName(“Connector.ashx”)] but that di not work.

The error I receive references the fact it cannot find the view Appointments/Connector.ashx.

Any help would be appreciated. At this point I intend to just access the back-end database the usual way.

Thanks!