Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我如何从 WCF 服务中获取具体的 WSDL 吗?
我知道 ?wsdl 给了我一个抽象的 WSDL,但不知道如何具体化。
感谢您的回答,但这无济于事。我找到了解决方案。我需要这个具体的 wsdl 到具体的 wsdl 来开发 ESB 解决方案并连接到后端。我为此使用了 Tibco AMX 服务网格,并使用它自己的机制构建了具体的 wsdl。
您似乎在询问发布元数据。
为您的服务添加具有属性的ServiceMetadata行为:httpGetEnabled
ServiceMetadata
httpGetEnabled
<behaviors> <serviceBehaviors> <behavior httpGetEnabled="true" > <serviceMetadata/> </behavior> </serviceBehaviors> </behaviors>