Hello,
How can i have my web service to interact through HttpPost and HttpGet?
I dont need soap (mostly just xml over http).
I read this can be achieved through web.config but , where to put the code?
How to read/write using this method.
Many thanks
JJ
ajnt - 16 Mar 2006 18:40 GMT
Hi,
You may find this page is of use to you.
http://support.microsoft.com/default.aspx?scid=kb;en-us;819267
Ajnt
> Hello,
>
[quoted text clipped - 7 lines]
> Many thanks
> JJ
CaffieneRush@gmail.com - 20 Mar 2006 01:34 GMT
My understanding is that all three protocols should be enabled by
default. There are times when the exposed method is too complex for Get
to support such as passing and recieving complex objects but you would
not be making this mistake since you just want to use Get and Post.
Point your browser to the test asmx page of your service and click on
the method that you've written that you're interested in. You should
see an example each of Soap invocation, Post invocation (if supported)
and Get invocation (if supported).