What was the difference between WSDL & Mex Endpoint in WCF

后端 未结 2 1848
猫巷女王i
猫巷女王i 2020-12-04 19:09

I have couple of question on mex endpoint.

  1. In legacy web services, we create a proxy using wsdl. The WSDL exposes the web service\'s meta data. In wcf, anot

2条回答
  •  [愿得一人]
    2020-12-04 19:49

    MEX endpoints are special endpoints that allow clients to receive the service’s metadata by using SOAP messages instead of only http get requests(ie httpGetEnabled="true"). You can create MEX endpoint that can be accessed through http, https, tcp, and even named pipes.

    The response that you will receive when calling a MEX endpoint’s GetMetadata operation will include the content of the WSDL and all the XSD files that are linked to it.

提交回复
热议问题