
February 29th, 2008, 04:39 AM
|
|
Registered User
|
|
Join Date: Feb 2008
Posts: 2
Time spent in forums: 9 m 51 sec
Reputation Power: 0
|
|
|
Need Help Debugging Script/Error in Script - Cross-linking to JSP server security problem
Hi again,
One of my pages is a JSP page which generates a list from a database. The problem is that:
1. In my frame set-up, I need access to the parent in order to update stuff, and
2. My JSP server is located on a different machine (and domain)
So when I try to access parent to call a function, using this code:
Code:
function updateMenu() {
var d = parent.frames["menuFrame"];
d.updateMenu("menu_research");
}
I get this error:
Error: uncaught exception: Permission denied to get property Window.updateMenu
Any ideas on how to get around this?
|