Cross-domain refers to web applications that communicate outside of their hosting domain / web server. This can be in the form of network requests to other servers or sharing data with DOM components served from different domains composed on the same web page.
0
votes
1answer
33 views
Why does my accept header keep getting changed from application/json to */*
I'm trying to send an ajax request to a WebAPI service with the accept header of 'application/json'
when I set a break point in the service, I see that the accept header is coming through as "/". ...
0
votes
0answers
5 views
window.open in IE does not inherit parent's document domain with empty url
When I open a window in IE with an empty url (so I can write the contents later), it does not inherit the parent window's domain.
eg,
w = window.open('', windowName, windowSpecs)
...
3
votes
2answers
40 views
CORS synchronous requests not working in firefox
The official documentation of jQuery ( async ajax section ) says that:
Cross-domain requests and dataType: "jsonp" requests do not support
synchronous operation.
However this works in all ...
2
votes
1answer
31 views
What is limit of data that can be passed with jQuery ajax GET request
This is the cross-domain request to the REST service:
$.ajax({
type: "GET",
dataType: "jsonp",
contentType: "application/javascript",
...
0
votes
1answer
20 views
Accessing API on another domain
There is an API on a domain. I have its URL and credentials.
When I type the API URL in the browser, it displays data in the browser. Data is in XML format.
I need to access that API using a function. ...
0
votes
2answers
19 views
Jquary + Web Service + Cross Domain
I have web service and I am calling it from JQuary, everything works fine until I remain on the same server, but when I try to call that service from other domain I don't get anything please somebody ...
0
votes
1answer
3 views
Enable Cross-Origin Resource Sharing on JBoss 7
First time user of JBoss, I'm migrating from TomEE.
I have a client with IP 192.168.1.121 from which I want to access a webservice that is offered by my JBoss 7.1.1 server at IP 192.168.1.147. I can ...
0
votes
0answers
4 views
how can I Cross-domain sharing session on Tomcat6.0.20
first, i had look for answers on web, I got a answers that add these segment in context.xml
<Context sessionCookieDomain=".example.com" sessionCookiePath="/">
but unfortunately, it isn't ...
0
votes
0answers
14 views
Dragover (jquery) want not work when iframe is in other domain than main page (in Chrome)
is there reason why Chrome want not drag image, link or selected text over iframe when iframe source is in diffrent domain than main page is? It is surprising, because when i drag any image or link ...
-1
votes
0answers
16 views
DNS domain and subdomain equality
For which propose does "myDomain.com" and "sub.myDomain.com" can be considered the same?For example:
Does a certificate for "myDomain.com" valid for "sub.myDomain.com"?
What about cookies?
Is ...
1
vote
0answers
12 views
can more then 1 web apps on the same domain but different host share authentication
I have a servicestack web service web.mydomain.com where I use CustomUserSession and shared cache client.
How can my other servicestack web app installed on app.mydomain.com use this service?
if I ...
0
votes
0answers
18 views
.ajax call creating 2 request packets only when hitting an IIS8 server - 2nd packet returns Method Not Allowed
Ok, I’ve been delving into Fiddler a lot more to get to the bottom of this.. and it turns out 2 requests are being sent/received when I go to the IIS 8 site vs the IIS7 site. I have done the test ...
1
vote
0answers
32 views
Cant set cookie for remote domain with AJAX (CORS)
I have two domains:
login.com and site.com
On the page login.com/ajax.htm I have the following code:
<script type="text/javascript" ...
0
votes
1answer
15 views
Cross-Domain POST in JBoss AS 7.1.1
I have a web application in a cloud server. One of my controllers of my web application externalizes URLs to be accessed through a mobile app (using JavaScript; I´m using Titanium to develop for ...
0
votes
1answer
11 views
Cross domain restrictions and sub-domain
Does there are a cross domain policy restriction for subdomain ?
I i have an application on paint.xxxx.com wich is manipulating images from image.xxxx.com, does there are any cross domain problem ?
...
0
votes
0answers
8 views
different SQLite reading with same data imports
I need help with the following case.
I develop a mobile app that can insert data with two ways.
The one way is to insert data to local SQLite from local txt files with the below code
...
3
votes
1answer
25 views
Overriding default parameter names in ExtJS 4 Store
I'm trying to override the default parameter name for limitParam in proxy for the Store. I want to make a JSONP call to http://search.twitter.com/search.json?q=kathmandu&rpp=2 but instead of ...
0
votes
1answer
37 views
Devise AJAX - POST request : current_user is null
I try to develop a single page application with authentication. I use Devise (Rails) and AngularJS.
For some different reasons my rails application and my angularjs application are not on the same ...
0
votes
0answers
13 views
Cross-Domain Tracking with Dynamic Destination Domain
I need to set up cross-domain tracking for a client. This is normally straight-forward as the destination domain is already specified within the action button.
However, on submit the user is taken to ...
0
votes
0answers
3 views
shindig cross-domain with apache server
all
I use this url "http://www.shindig/gadgets/ifr?nocache=1&url=http://localhost/test2.xml", in this gadget, there is an request to remote site, but i don't know how to make this corss-domain ...
1
vote
0answers
5 views
Chrome background script to make a ajax post to localhost php
I spent hours searching for a solution.
I have a chrome extension with content script that needs to pass some data to a local web site (localhost/mywebsite/page.php).
I tried number of ways but it ...
0
votes
0answers
15 views
VB.NET Web App Cross Domain File Writing
I have a VB.NET web app on a server I do not have admin access to. I have another server on the same network but a different Windows domain that I do have admin access to. I want to have users upload ...
0
votes
0answers
14 views
How to send the large parameters to child page(iframe) from parent page with cross domain?
Please help me.
Target
I'd like to pass the lots of parameter to iframe from parent page with cross domain.
Problem
The limits of number of characters on URL with IE is 2083.
So, I'd like to send ...
0
votes
1answer
18 views
PHP wildcard in domain suffix using server variable?
I'm using the PHP server variable to check if a domain is true and then do something. My issue is that other developers will have the same site locally for development / Git but they might name it ...
0
votes
0answers
16 views
Jquery Ajax Hit Always Give Error With Status Code 0 - But Tamper Data Status Code is 200
I am trying to implement Drupal 7 web Services to make a PhoneGap based app.But the jquery ajax request always return status 0 and error.But all the other tools like tamper data and poster returns ...
0
votes
0answers
19 views
How Do I Avoid Mixed Content Warnings When Embedding Cross Origin JSONP
I've been using the service https://whateverorigin.org/ to parse a webpage, lets say google.com with the call
$.getJSON('http://whateverorigin.org/get?url=http://google.com', function(data){
...
0
votes
0answers
44 views
Cross domain GET request not sent on Android 2.2, 2.3 and 3.2
The problem is with integrated browser on Androids 2.2, 2.3 and 3.2.
I tried with fiddler on my computer to follow traffic from my mobile and I noticed a strange thing. When I open a page for the ...
0
votes
0answers
31 views
Serving pdf in iframe giving Cross Domain Error
im serving a pdf file in my application in an iframe through an ashx handler, the pdf is on my domain but when i try to access the elements of the iframe like
...
0
votes
1answer
16 views
How can I access another domain's cookies from a Silverlight app?
I have two different webpages. The first is a php app that creates a cookie (http://www.phpapp.com). The second is a silverlight app (http://www.silverlightapp.com).
The question is how could I ...
1
vote
1answer
49 views
heroku node js simple cross-domain issue
I worked with two nodejs (no Express) application :
webprocess
dataprocess
dataprocess sends back a rest message with this code :
var status = 200;
if (responseStatus) {
status = ...
0
votes
0answers
14 views
Got error for xhrpost to cross-domain service
i call the service(localhost:1348) from localhost(diff. port) via POST method but it show error 500.
error msg Error: Unable to load ...
-2
votes
1answer
29 views
access parent div from inside iframe
Have a div inside which have an iframe - which on button(within iframe) click will redirect to a page on my domain - here on this new page - onload event when I do
...
0
votes
1answer
23 views
JQuery not working on redirection
I have an iframe within div
<div>
<iframe pageB>
</div>
on button click in iframe, redirected to a different page A - I have a jquery to hide the div on page load of A - so this ...
0
votes
0answers
12 views
Is there a JavaScript library for sending information via an image get request (like Google Analytics does)? [closed]
I need to do some cross-domain posting of information, and would like to send the information by query string on an image get (like Google Analytics does). Does anyone know of a JavaScript library ...
1
vote
0answers
66 views
XMLHttpRequest is not allowed by Access-Control-Allow-Origin in .safariextz file
I am getting following error in error console, facing this issue for many days, please help.
XMLHttpRequest cannot load "localhost Url". Origin
https://mail.google.com is not allowed by ...
0
votes
1answer
34 views
Cross domain posting to normal aspx page with jquery or javascript
I have a requirement where I have to post a xml data in form post method to a cross domain page using jquery where there is no web-service written its normal aspx page. I am using the following code ...
0
votes
0answers
7 views
Write a callback function - which gets called from different domain
If I want to write a callback func - that gets called in an iframe(different domain) -along with the redirection url(destination - my domain) - is it possible for such cross domain calls- saw mixed ...
0
votes
0answers
13 views
Is there a tool to check my crossdomain.xml added to my site is working fine?
Is there any tool to check that crossdomain.xml which I have added (to the root of my site) is allowing cross domain web requests. I have a silver light application which makes cross domain requests ...
-1
votes
0answers
34 views
cross domain jsp proxy and ajax - working code samples please
I am having a cross domain issue. I am trying to call external url which suppose to return response data. I dont have control on remote server code. I have tried with jquery, ajax,json/jsonp ...
1
vote
2answers
50 views
Cross domain communication from parent to child iFrame using Javascript
I need to pass data from a web page to an iFrame hosted in that web page. I used window.postMessage. however the iFrame does not receive the event.
Here is my code snippet.
Parent page:
<!DOCTYPE ...
-1
votes
0answers
49 views
cross domain in javascript: html in a string [closed]
how can I get html of a cross-domain page in javascript?
I need to get full html as String in order after to parse it, and I have to do it in the
client side, not in the server side.
Some easy ...
0
votes
1answer
65 views
Not allowed by Access-Control-Allow-Origin issue
I'm rtying to POST some data from client-side to server-side's script and I still got this Eroor:
OPTIONS http://localhost/site/dbs.js Origin http://localhost:8080 is not allowed by ...
4
votes
4answers
181 views
Getting cross-domain errors when using angularjs within flex (web control), and attempting to load templates/json (local files)
Let me give you a bit of history on what I'm trying to do.
I'm using a Flex application, as a container for a web app. So within this Flex app, it has a web controller, which loads a full fledged ...
1
vote
1answer
39 views
Invalid XML - after cross-domain ajax http/get
Here is my problem: I am trying to use a web t-shirt designer that uses an online t-shirt site API. The issue should have nothing to do with the application but it helps me describing the system. This ...
0
votes
1answer
18 views
Single File Access by certain domains
I was wondering if there is an “easy” way to protect a file from begin access from all domains…
Let say that I want only a few domains to use my script so they put in their HTML
From domain ...
1
vote
1answer
42 views
How to configure apache to accept POST cross domain
I need to configure apache on ubuntu to accpect POST cross-domain.
I tried like that http://enable-cors.org/server_apache.html:
Install mod_header
Add header('Access-Control-Allow-Origin: ...
0
votes
0answers
7 views
Iframes - handle button click
Is there a way for handling a button click (just want to hide the parent div on button click) which is inside an iframe from other domain - I know it subjects to same origin policy -tried some hacks I ...
0
votes
1answer
28 views
Controlling the functions of foreign site
I have hosted a simple webpage on my laptop. This page, sends request to another page [global www.* domain]; Page X which in-turn invokes another webpage; Page-Y and the final result shown on the ...
2
votes
1answer
63 views
+100
HTML5 Cross-document messaging: can Malicious code sniff messages between domainA.com and domainB.com?
According to 10.4 Cross-document messaging: domainA.com can send messages to domainB.com using cross-document messaging in the way that prevents cross-site scripting attack when origin and data ...
-1
votes
4answers
49 views
cross domain request data using pure javascript
I am trying to access an external url which returns json data and based on one of the value in that data I need to hide a table row. I have tried several options to do this with jsonp, jquery and ajax ...






