/    Sign up×
Community /Pin to ProfileBookmark

Error with ie 11: This page can’t be displayed. Make sure the web address //ieframe.d

Hello everyone,

I have two application: application A is developped in java and application B is developped in php. I try to send a simple data from application B to application A.
First of all, application A has a link “linkA”, it opens application B in a new window:
<a href=”javascript:accessToAppB()”>Access to application B</a></div>
Onclick on this above link, application B is opened on a new window. Application B contains a link “linkB”:
<a href=”javascript:displayApplicationB(“1234″);void 0”>Access to application A</a>
Onclick on this above link, “1234” is sent from application B to application A and injected into an input type text:
<input type=”text” name=”myID” id=”myID”>
Please find below the codes I wrote, the code works very well with google chrome but with internet explorer 11, I have the following error when I click on the “linkB” located at the application B:
This page can’t be displayed. Make sure the web address //ieframe.dll/dnserror.htm# is correct:

Application A:
<script>
function accessToAppB() {
var childWindowUrl = “http://10.4.25.7:9090/appB/index.php“;
window.open(childWindowUrl);
}
</script>

Application B:
function displayApplicationB(username){
window.opener.postMessage(“1234″,”*”);
}
The Goal of my application is actually to send data from application B to application A. Application A is located at server A and application B is located at server B.

to post a comment
JavaScript

0Be the first to comment 😎

×

Success!

Help @Andria spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...