javascript - Cross server java scripting -


I have an application running in webserver which invokes a new window loaded by weblogic server when I If I close the window that is running on the weblogic server, then I would like to refresh the original window running in websphere.

I tried the following methods, but all of them were throwing a denied script error.

  window.opener.location.reload (); Window.parent.functionName ();   

Please suggest cross server scripting error.

I suppose that 2 servers are referenced / by different domain names, that is:

server1.com/ and server2.com /

Some browser functions are limited by calling from a page with another top level domain name.

You can use different subdomains with the same top level domain ie:

server1.server.com/ server2 Server.com / < P> This configuration allows you to do anything from the browser.

Comments