I'm wondering if there's anyone out there with a simplified resolution for my scenario, I'm out of ideas now.
I have a WebAPI service, which I want to be on another domain than my site calling it. This service has been secured, so required Basic Authentication.
I want to call it from jQuery, in which you can't send a "jsonp" request due to you can't set the request header, and I can't use json as I'd have to use CORS in which isn't supported by IE6/7, so that's not viable too.
Are there any other options available to me to get my scenario working?