Is it possible to post to a WCF service hosted in IIS? I know that that this is possible using REST but I really need the WSDL generation and SOAP headers. I need to transition an existing ASMX web services to WCF but I need to also allow my clients to continue to utilize the service via http posts (xml http request via javascript). Is REST my only option?
Share
No, with a SOAP service, you need to use the SOAP methods and actions – you cannot use HTTP POST to “dump” some data on a SOAP service.
If you need HTTP POST, then REST is the way to go.