I should note that the URL we are using is utilizing SSL and our ArcGIS Service is not using SSL.
Cross domain support over SSL needs to be explicetly authorized in the ClientAccessPolicy file:<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="http://*"/>
<domain uri="https://*"/>
</allow-from>
<grant-to>
<resource path="/" include-subpaths="true"/>
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
Not sure of the syntax with CrossDomain but I guess there is something similar.