Failed to access WebService

I have a webservice @ http://recpushdata.cyndigo.com/Jobs.asmx , but I cannot access it, although I am adding it as a WebReference correctly.

Any help would be great.

+1


source to share


2 answers


AFAI can see that the asmx page has server errors, so you won't be able to access it. Contact your web service administrator to fix the errors.



+1


source


You mean you are getting a "test form that is only available for requests from the local machine." error while accessing the method? If so, you need to add the following to your <system.web> part of your web.config

<webServices>
  <protocols>
    <add name="HttpGet"/>
    <add name="HttpPost"/>
  </protocols>
</webServices>

      



This allows you to access the method from your local computer

+1


source







All Articles