vote up 1 vote down star
1

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.

flag
Could you provide more information on why you cannot access it. Perhaps an error message? – Kyle B. Nov 21 '08 at 19:31

2 Answers

vote up 0 vote down

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.

link|flag
recpushdata.cyndigo.com/Jobs.asmx access this url it shows all the methods properly – Badmate Nov 21 '08 at 17:24
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 Nov 21 '08 at 17:34
Thanks alot for all your support – Badmate Nov 21 '08 at 17:35
Badmate: pls, mark the answer as accepted. – Sunny Nov 21 '08 at 17:44
Why would it be accepted? It barely provides an answer. – Pascal Paradis Nov 21 '08 at 17:46
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.