XMLHttpRequest cannot load http://mywebservice. No \'Access-Control-Allow-Origin\' header is present on the requested resource. Origin \'http://localhost:9000\' is t
Replace get with jsonp:
get
jsonp
$http.jsonp('http://mywebservice').success(function ( data ) { alert(data); }); }