Using different Server IPs in Javascript GET/POST requests? -


after searching while , didn't find hoping i'm asking myself if it's possible send get/post requests 2 different ips, if server/vps has 2 different ip addresses assigned?

the requests looks this:

 $.ajax({     type: "get",     cache: false,     url: "http://url",     datatype: "json",     success: processdata,     error: function() {         somefunctio();     }     }); 

my questions are: possible access header of request should sent , if so, need change change ip address in request?

or need migrate language, such c++ or node make happen?


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -