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?