11-15-2012 09:53 PM
$.ajax({
contentType: "application/json; charset=utf-8",
url: 'http://mydomain.com/mypath',
success: function(data, textStatus, jqXHR) {
alert('cool')
},
cache: false,
dataType: 'json'
})I get an JavaScript Alert that says Access to "http://mydomain.com/mypath" not allowedSolved! Go to Solution.
11-16-2012 02:33 AM
<access uri="*" subdomains="true" />
11-16-2012 02:34 AM
<access uri="http://mydomain.com" subdomains="true" />
11-24-2012 08:51 PM
Thanks for the solution. Works for me.. My first try was to have a last slash and with a port number :80 and that didn't work. 2nd try was to remote the port number and the last slash and it works.
11-24-2012 08:52 PM
12-29-2012 02:18 AM - edited 12-29-2012 02:23 AM
<access uri="*" subdomains="true" />
This is working not working for me in BB10. I need to add all the URL I am using in my project by using
<access uri="http://mydomain.com" subdomains="true" />