There is any WCF binding that accepts the data in a HTTP query string?
Asked
Active
Viewed 113 times
2 Answers
2
Well, WCF also supports REST, which sort of allows you to specify the parameters for your call in the URL.
- MSDN WCF REST Developer Center - tons of goodies, including screen casts
- An Introduction To RESTful Services With WCF
- The new WCF Web Programming Model supports REST Design
Is that what you're looking for? I don't think there's any standard way to package up a SOAP envelope on the query string.....

marc_s
- 732,580
- 175
- 1,330
- 1,459
1
webHttpBinding
might be what you want... Clicky

ZombieSheep
- 29,603
- 12
- 67
- 114
-
The first result was just what I wanted http://weblogs.asp.net/kiyoshi/archive/2008/10/08/wcf-using-webhttpbinding-for-rest-services.aspx – Jader Dias Dec 11 '09 at 18:19