Quote:
Originally Posted by Trilitech
Fortunately asp.net already supports REST style requests (I didn't realize this before today), so no changes were needed on the web server side.
|
Well maybe one change...
This was not working for me. Then I realized it WAS working only from the same development machine that was running the service. You can see this feature in action on the test web service pages that ASP.NET builds automatically.
In order to make this feature of ASP.NET accessible to remote machines I had to add this to my web.config file in ASP.NET.
Code:
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>