OK.
I think I have the hang of this thing now however there are now logs
which have permission denied.
The more I search the internet for more information, the more it seems
that this issue is to do with the Same Origin Policy.
The design off the application at this point involves a web page with
a button which when selected produces a modal dialog for the user to
select a value from, which is then returned to the calling page.
The problem appears to be that the value gets set in a javascript file
in the page
<<HomeDir>>\Jscript\Custom
using the code
oReturn = window.showModalDialog("dialogs/location/location.asp",
oArguments, "dialogHeight:480px; dialogWidth:640px;")
if (oReturn!=-1)
The error occurs on the if statement.
Does anyone know if the Home Directory can be used to override the
Same Origin Policy?
> OK.
>
> I think I have the hang of this thing now however there are now logs
> which have permission denied.
In order to figure out whether they have anything to do with your symptom
you could try checkpointing the process with prompts or breakpoints.
Then you would notice those delays in the timestamps of the trace.
E.g. rudimentary prompting can be done simply by setting the Active Scripting
Security setting to Prompt and allowing it each time. Alternatively, you
could invoke a script debugger and get a more precise idea of what
is happening when your error message is issued.
> The more I search the internet for more information, the more it seems
> that this issue is to do with the Same Origin Policy.
[quoted text clipped - 15 lines]
> Does anyone know if the Home Directory can be used to override the
> Same Origin Policy?
You may be in the wrong newsgroup, if looking for help at that level.
Try the MSDN forum for IE Web Development instead. Unfortunately
there is no newsgroup interface for it so I can't cross-post.
Good luck
Robert
---