For anyone else running into this problem, the solution is to define the POST method with no parameters, and access the raw data via Request.Content:
public HttpResponseMessage Post()
{
Request.Content.ReadAsByteArrayAsync()...
...
For anyone else running into this problem, the solution is to define the POST method with no parameters, and access the raw data via Request.Content:
public HttpResponseMessage Post()
{
Request.Content.ReadAsByteArrayAsync()...
...