views:

36

answers:

2

There is any WCF binding that accepts the data in a HTTP query string?

+2  A: 

Well, WCF also supports REST, which sort of allows you to specify the parameters for your call in the URL.

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
+1  A: 

webHttpBinding might be what you want... Clicky

ZombieSheep
The first result was just what I wantedhttp://weblogs.asp.net/kiyoshi/archive/2008/10/08/wcf-using-webhttpbinding-for-rest-services.aspx
Jader Dias