makeImageRequest

I wrote a super basic app that pulls an image from a remote server in the 1.?? version of the APIs, then over the weekend upgraded everything to 2.3.2 of the SDK and it's failing now.

The first error when I attempt to get the image is -1001SECURE_CONNECTION_REQUIRED. If I update the URL to be https, I then get a 404 error.

Fist - I don't want to be forced to HTTPS, so how can I make an HTTP request and get past the -1001 error
Second - I'm confident that the image that I'm requesting is valid and really out there (http://static.garmincdn.com/com.garm..._logo_on_w.png)

Again, all of this code worked as expected prior to upgrading to the 2.3 APIs.

var url = "static.garmincdn.com/.../garmin_logo_on_w.png";
System.println( "URL: " + url );
var options = { :maxHeight => 100 };
Comm.makeImageRequest(url, null, options, self.method(:onImageResponse));
.....
view.drawBitmap( xPosition, yPosition, bitmap);