是否可以为同一服务上的不同合约返回不同的 wsdls?
我有一个 WCF 服务,在两个不同的端点上实现两个合约。我希望客户端能够指向一个端点(而不是服务的基地址)并获取在该端点上实现的合同的 wsdl(而不是包含所有合同的 wsdl)。
这可能吗?如果可以,如何实现?
I have a WCF service implementing two contracts on two different endpoints. I would like a client to be able to point at an endpoint (rather than the base address of the service) and get the wsdl just for the contract implemented on that endpoint (rather than a wsdl containing all contracts).
Is this possible? If so, how can it be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要如下所示设置服务(如果托管在 IIS 中,则使用单个 SVC 文件)
将每个合同设置为单独的服务类(在同一 IIS 网站中使用其自己的 SVC 文件)
Instead of setting up the service like shown below (with a single SVC file if hosting in IIS)
Set each contract as a separate service class (with its own SVC file in the same IIS website)