views:

182

answers:

2

I have a webservice @ http://recpushdata.cyndigo.com/Jobs.asmx but I'm not able to access it though I am adding it as a WebReference properly.

Any Help would be great.

+1  A: 

AFAI can see, the asmx page has server errors, so you will not be able to access it. Contact the admin of the web service to fix the errors.

Vin
http://recpushdata.cyndigo.com/Jobs.asmx access this url it shows all the methods properly
The Service description doesn't appear to work, and the webservice appears to be configured incorrectly. I agree that you need to contact the web-service admin.
seanyboy
Thanks alot for all your support
Badmate: pls, mark the answer as accepted.
Sunny
Why would it be accepted? It barely provides an answer.
Pascal Paradis
@Pascal because it solved the problem.
C. Ross
A: 

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

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

This enables you to access the method from the local machine

danrichardson