Is there a WCF Rest C# Client Generation Tool?

后端 未结 4 1307
南方客
南方客 2021-02-04 00:55

Before I venture down the path of creating one, I was wondering if anyone knows of a utility program which will take the REST Help page of a WCF Rest Service and create the rele

4条回答
  •  孤街浪徒
    2021-02-04 01:38

    Why would you create clients for a RESTful service? You don't need one - you just need to be able to initial HTTP requests. If you would like to call the same operations via SOAP or some other method then create a new endpoint for the service and a new contract and expose mex for it so that svcutil can consume it.

提交回复
热议问题