up vote 1 down vote favorite
1
share [g+] share [fb]

I want to access one of my web service methods via HTTP GET, I've seen it done before but I can't figure out how to allow this access protocol on a VS2008 web service project.

I guess you have to change the web.config file but not sure what to.

Does anyone know?

link|improve this question

72% accept rate
Are you talking about an ASP.NET web service or a WCF service? – RandomEngy Jul 16 '09 at 20:27
An ASP.Net web service. – Jon Samwell Jul 16 '09 at 20:36
I think the ASP.NET folks may have disowned their services. Microsoft now calls them "legacy". Better to say "ASMX Service". – John Saunders Jul 17 '09 at 0:27
feedback

1 Answer

up vote 6 down vote accepted

In your Web.config:

<configuration>
    <system.web>
        <webServices>
            <protocols>
                <add name="HttpGet"/>
            </protocols>
        </webServices>
    </system.web>
</configuration>
link|improve this answer
Worked a treat thanks!! – Jon Samwell Jul 16 '09 at 20:40
thanks RandomEngy.. – Viral Sarvaiya Sep 29 '11 at 4:54
feedback

Your Answer

 
or
required, but never shown

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