HTTP error 403 while accessing web service

I am trying to access a web service from a remote computer. I was able to access the web service from the browser. But I am getting HTTP 403 when I try to call the web service from the application.

Any idea why?

0


source to share


2 answers


A 403 response indicates that the host or software you are connecting to does not have access to the web service. The reasons for this may be:



  • The remote host is blocked by a firewall
  • You have reached your web service call limit and are blocking any further connections.
  • You are submitting authentication credentials, but the account is denied / disabled.
  • User agent or some other header in your request causes the service to reject the connection. Possibly a missing title?
+6


source


The web server believes that the HTTP data stream sent by the client was correct, but access to the resource specified by the URL is denied for some reason. Check your firewall settings. This should help you :-)



0


source







All Articles