これは、Web サービスにアクセスしようとしたときに発生するエラーです。
XMLHttpRequest cannot load http:webservice.com/abc
Origin null is not allowed by Access-Control-Allow-Origin.
ステータスは 200 OK です
$.ajax({
url :"http://webservice/Demo.php",
type: "GET",
crossDomain : true,
error:function(response){
alert("error");
},
success:function(response){
alert("success");
}
});