casetracker_services.module line: 514

Modify the select statement to order by weight - so it shows up on the client side in the order specified on the server

  $query = "SELECT csid, case_state_realm, case_state_name FROM {casetracker_case_states} ORDER BY weight";

casetracker_services.module line: 553

comments are hardcoded to be readonly, meaning you can't add comments on the server without editing the node to allow comments.

    $data->comment = true; // who would have thought node_prepare doesn't set defaults...

I changed this to:

    $data->comment = 2; // who would have thought node_prepare doesn't set defaults...

So that comments are read/write on the server although this really should be based on what is defined in the content type settings.