So IE7 does not support CORS (cross origin resource sharing). However, due to nature of my app, I have to make a cross domain ajax post. Is there some way to get this to work in IE7? Unfortunately, I cannot use a server side proxy for security reasons. Perhaps using an iFrame?
I forgot to mention, but I control the other server also.
The Easy XDM library was developed to solve the cross origin problem :
I didn't use it yet, but we might have to try it to solve a Http / HTTPS Ajax call problem...
Hope that helps.
Other threads of interests :
Do it the old fashioned way: post the form to an iframe using the external domain. You can listen to the onload event on the iframe to know it has completed.
The other option is to use a server-side proxy and post it from there.