0

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

Jader Dias
  • 88,211
  • 155
  • 421
  • 625

2 Answers2

2

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
  • 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