Currently we are using 2013.2.717.40, and the only code I have set up at the moment matches what is in the SchedulerController provided in the sample
[HttpGet]
public
IEnumerable<AppointmentData> GetAppointments(
string
schedulerInfo)
{
return
Controller.GetAppointments(JavaScriptSerializer.Deserialize<MySchedulerInfo>(schedulerInfo));
}
[HttpGet]
public
IEnumerable<ResourceData> GetResources(
string
schedulerInfo)
{
var o =
new
JavaScriptSerializer().Deserialize<MySchedulerInfo>(schedulerInfo);
return
Controller.GetResources(o);
}
All I'm trying to do at the moment is fetch appointments via webservice and nothing else. At this time it is not possible to update to the latest version in the application we are using, however that sample does work correctly.
If you can, try to run that sample with the version I specified and see if you experience the same scripting error I have run into.