Hi russel,
Is there any plugin on Task Entity Create Message?
The code below works fine.By the way status field is optional, if you do not set any value for statuscode , crm will set its default value
Task t = new Task();
t.Subject = "yeppa";
t.StatusCode = new OptionSetValue( (int) task_statuscode.Baslatilmadi);
mySrv.Service.Create(t);
