Thanks for all your input, but now I have more or less a similar problem, I have the data that needs to be stored in sql-server database, when I try to post it the data does not get written. Is my code structure correct?
self.CurrentDowntimeEvent = {
        method: 'POST'
        , url: 'someurl/test'
        , data: {
          DepartmentId: cookie
        , CategoryId: -1
        , Comment: ""
        , DowntimeStart: "2014-07-07T10:00:00"
        , DowntimeEnd: null
        }
        , headers: {'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8'}
    }).success(function (data) {
        console.log(data);
    }).error(function (data) {
    });
 
     
    