我创建了一个Web服务,我试图为3个端点提供不同的绑定。 1. basicHttpBinding, 2. wsHttpBinding, 3. webHttpBinding
当我进行服务引用时,我只获得了带有basicHttpBinding和wsHttpBinding绑定的端点。我没有得到webHttpBinding。可能有什么不妥。
这是web.config中的serviceModel节点的结构。
<system.serviceModel>
<diagnostics>
<messageLogging logEntireMessage="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true"/>
</diagnostics>
<services>
<service behaviorConfiguration="VersionTolerance.Service1Behavior" name="BookShop.BookShopService">
<endpoint address="sadha" binding="basicHttpBinding" contract="BookShop.IBookShopService" />
<endpoint address="ws" binding="wsHttpBinding" contract="BookShop.IBookShopService" >
</endpoint>
<endpoint address="web" binding="webHttpBinding" behaviorConfiguration="webHttpBehavior"
contract="BookShop.IBookShopService" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:49654/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="VersionTolerance.Service1Behavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="webHttpBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
答案 0 :(得分:10)
没有错 - 这就是它的工作方式!
basicHttpBinding
和wsHttpBinding
是SOAP绑定,它们公开有关其服务的元数据 - 您的Visual Studio Add Service Reference
可以查询其端点,找出它们被调用的内容,它们提供的方法,他们期望什么数据类型作为参数以及它们返回的内容。
webHttpBinding
是REST - 默认情况下REST没有元数据的概念 - 您将无法获得服务描述,方法列表等。 - REST完全是关于资源 - 不是方法。
因此,当您执行Add Service Reference
时,您将获得SOAP端点的代理客户端 - 但不用于REST / webHttpBinding
端点。按设计工作。
WCF数据服务 - 构建在REST之上 - 提供与SOAP绑定类似的体验,因为您可以执行Add Service Reference
并获得一个不错的客户端代理和所有 - 这是完成的,因为OData协议定义了REST之上的元数据交换。因此,如果您可以将REST服务转换为WCF数据服务,那么您可以再次使用。
否则,使用REST,您只需“知道”(从文档页面或其他内容)REST服务的资源URI是什么,以及REST动词在REST上下文中的作用。