XML http post error

  • Thread starter Thread starter Niraj Ranka
  • Start date Start date
N

Niraj Ranka

Hello,

I am trying to use XML Http objects via Javascript to get the values from
some websites. When i am checking it on local machine it is working fine.
But when i upload the same of my web server it gives me the error of
Permissions Denied.

Any idea why so....
 
Could you post some code to demonstrate - what are you trying to
achieve ?
Also, at what point is the error raised ?

Kalpesh
 
browser security will only allow xmlhttp to call the same server the hosting
page came from. this same restriction exists with java applets and hosted
..net controls.

if you need to reference another server, you will have to add relay support
to the hosting site. i.e. xmlhttp calls your site, then your site call the
foreign site and returns the results.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top