i´m trying to call my webservice with jquery.ajax.
jQuery.support.cors = true;
$.ajax({
type: 'POST',
url: wsUrl,
contentType: "text/xml; charset=utf-8",
dataType: "xml",
cache: false,
crossDomain: true,
data: soapRequest,
success: reqSuccess,
error: reqError
});
I get "Access denied"-Error and status / readyState 0.
If i make a request to my webservice with SoapUI, it works very well.