Good day.

I have a service published on IIS'e. I work with him through a proxy class. How do I set it up (what settings do I use) in order for it to learn how to accept an HTTP POST request?

thank

  • If the proxy class is a remote client of the service, then the request is made via WebRequest. - cpp_user
  • @cpp_user, yes WebRequest. My question is, WHAT and HOW do I need to be configured in the service (or maybe in IIS) to accept HTTP POST requests? - Leonard Bertone
  • [WebInvoke (Method = "POST", ...] - cpp_user
  • @cpp_user, thanks. But tell me, do IIS need to be configured somehow? - Leonard Bertone
  • For a WCF service, you need to create an IIS application and web.config settings with endpoint and everything should work. - cpp_user

0