WCF to build SOAP based service

前端 未结 3 1572
我在风中等你
我在风中等你 2021-01-04 02:40

I am trying to find some good tutorials that would show me to create a simple SOAP based service using WCF and deploy it. I have been googling for the past 2 hour and can\'t

3条回答
  •  独厮守ぢ
    2021-01-04 03:23

    WCF is a technology for building services. It does not assume that the services are SOAP services or RESTFul or anything else. You have to learn WCf basics such as Service and DataContracts, Endpoints, Bindings etc to be able to work with any kind of service.

    The links given marc_s are very helpful for that.

    Now as far as SOAP is concerned, it is a format\technology used to transport messages from one endpoint to another. This details is covered by the Binding aspect of the WCF. When you expose and consume services you just have to choose a Binding which uses SOAP.

    Hence, you should, using links given by marc_s, learn WCF basics to build a service. Then you will know how to build a service and which binding to choose to use SOAP.

    Hope this helps.

提交回复
热议问题