MakeJsonRequest with POST Sending as GET

Former Member
Former Member
Hi, everyone. I'm sure I'm just missing something incredibly obvious, but my Communications.MakeJsonRequest() calls are not coming across to my server using the POST method I believe I specify. Instead, they arrive as a GET request, with the parameters appended to the URL (as you'd expect). Am I just horking the call here, or..?
Communications.makeJsonRequest(
"myserver.com/.../myservice",
{"SOME_PARAM" => "Payload"},
{"method" => Communications.HTTP_REQUEST_METHOD_POST},
method(:myCallbackMethod)
);


Standard ol' GET requests are successful when the service is tuned to listen for them. The service, when listening for a POST, is successful as well via the more ubiquitous means, so no problems there. The code as listed above will GET, however, when run through the simulator or on an actual device (tested on a D2 Bravo). Any ideas?