Questions tagged as 'cross-domain'

4
answers

How to make Ajax requests, with Jquery, in different domains?

Is it possible to perform a POST-type request to a url that is not part of the domain of our application? $.ajax({ type: "POST", url: "http://www.dominioexterno.com.br/acao/", data: { var1: $('#input1').val(), var2:...
asked by 09.04.2014 / 15:09
2
answers

Angled POST with customized header and CORS

I need to perform a POST request using angular (http.post) and I need to pass my access credentials (I am using basic authentication) to my API (.NET) in my header.    Authorization : Basic dXNlcm5hbWU6cGFzc3dvcmQ = No angular change the...
asked by 26.10.2015 / 18:17
3
answers

Ajax cross domain

Hello some time ago I asked this question: Paste content of another page by javascript or jquery The colleague @SneepSNinjA made the following algorithm that worked. $(document).ready(function(){ $("button").click(function(){...
asked by 17.07.2015 / 19:21
1
answer

What does Cross-Domain mean?

Looking at the subject, I've heard that Cross-Domain is an interaction between different domains. I even found a similar question in the SOPT itself, as per the link below. However, the concept itself was not clear in my vision, because a...
asked by 30.10.2015 / 12:31
2
answers

Jquery iframe transport plugin works in IE10 cross domain

I need to post xml using Federal Justice webservices, but I can only do it using IE10 in compatibility mode. I received the information that the iframe plugin transport from jquery would overcome this difficulty. Is this real or should I make my...
asked by 27.02.2014 / 23:46
0
answers

How to display all requested JS code by an iframe?

I want to display a iframe with an external page and then show in a textarea all JS code requested by the iframe in question. I have two problems: the first is how to know all the requests that iframe made, and the...
asked by 28.10.2015 / 16:34
2
answers

Problem when performing XHR in the same domain (localhost)

Explanation: I have an application running on a client computer, it worked normally for some time, then something happened that the system could only be accessed from outside and locally it did not work anymore . Problem: XHR is not ge...
asked by 10.09.2014 / 19:18
3
answers

Cross-Domain Application Security Doubt

I have a question regarding the security of cross-domain applications ... It is as follows, in case I have a hybrid APP that will run on a smartphone and will make requests ajax cross-domain to an api (in this case multiple .php...
asked by 16.06.2016 / 05:44
2
answers

Read an XML in another domain

Is it possible to read an xml in another domain? ex: http://mfmradio.fr/winradio/prog10.xml?player201507291645 I made the code: <script type="text/javascript"> var i; var timer,timeout2; $(document).ready(fun...
asked by 29.07.2015 / 17:00
1
answer

No 'Access-Control-Allow-Origin' header is present on the requested resource [duplicate]

I'm trying to do biometric authentication on a remote machine, using XMLHttpRequest. But it is returning the following message: XMLHttpRequest can not load link . In 'Access-Control-Allow-Origin' header is present on the requested resourc...
asked by 19.05.2015 / 17:33