I tried to integrate Scheduler but some error occur as below.
[Html part]
//data saving
var dp = new dataProcessor(“/API/Index/TestXML”);
dp.init(scheduler);
dp.setTransactionMode(“POST”, false);
[Web API with C#]
public object TestXML()
{
string XML = " ";
XML = XML + “<action type="" sid="1" tid="1">”;
XML = XML + “”;
return new HttpResponseMessage()
{
Content = new StringContent(XML, Encoding.UTF8, “application/xml”)
};
}
Something I Miss?
Could any body solve this issue or show me example?
Thanks.