您现在的位置是:主页 > news > 专业手机网站建设哪家好/百度用户服务中心官网
专业手机网站建设哪家好/百度用户服务中心官网
admin2025/6/17 18:08:13【news】
简介专业手机网站建设哪家好,百度用户服务中心官网,文山文山市网站建设,网站建设开票多少个点从Visual Studio 2010开始,开发人员可以通过“WCF服务应用程序”建立基于Web站点的WCF宿主服务。通过各种客户端可以调用这些服务。调用形式可以通过集成平台提供的“服务引用”方式实现,也可通过自定义代理的方式实现。下面对比各个版本添加“服务引用”…
专业手机网站建设哪家好,百度用户服务中心官网,文山文山市网站建设,网站建设开票多少个点从Visual Studio 2010开始,开发人员可以通过“WCF服务应用程序”建立基于Web站点的WCF宿主服务。通过各种客户端可以调用这些服务。调用形式可以通过集成平台提供的“服务引用”方式实现,也可通过自定义代理的方式实现。下面对比各个版本添加“服务引用”…
从Visual Studio 2010开始,开发人员可以通过“WCF服务应用程序”建立基于Web站点的WCF宿主服务。通过各种客户端可以调用这些服务。调用形式可以通过集成平台提供的“服务引用”方式实现,也可通过自定义代理的方式实现。下面对比各个版本添加“服务引用”方式建立的客户端默认配置文件情况。
Visual Studio 2010
<system.serviceModel><bindings><basicHttpBinding><binding name="BasicHttpBinding_IService1" closeTimeout="00:01:00"openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"useDefaultWebProxy="true"><readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"maxBytesPerRead="4096" maxNameTableCharCount="16384" /><security mode="None"><transport clientCredentialType="None" proxyCredentialType="None"realm="" /><message clientCredentialType="UserName" algorithmSuite="Default" /></security></binding><binding name="BasicHttpBinding_IService11" closeTimeout="00:01:00"openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"useDefaultWebProxy="true"><readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"maxBytesPerRead="4096" maxNameTableCharCount="16384" /><security mode="None"><transport clientCredentialType="None" proxyCredentialType="None"realm="" /><message clientCredentialType="UserName" algorithmSuite="Default" /></security></binding></basicHttpBinding></bindings><client><endpoint address="http://localhost:32191/Service1.svc" binding="basicHttpBinding"bindingConfiguration="BasicHttpBinding_IService1" contract="ServiceReference1.IService1"name="BasicHttpBinding_IService1" /><endpoint address="http://localhost:32191/Service1.svc" binding="basicHttpBinding"bindingConfiguration="BasicHttpBinding_IService11" contract="ServiceReference2.IService1"name="BasicHttpBinding_IService11" /></client></system.serviceModel>
Visual Studio 2013
<system.serviceModel><behaviors><serviceBehaviors><behavior><!-- 为避免泄漏元数据信息,请在部署前将以下值设置为 false --><serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/><!-- 要接收故障异常详细信息以进行调试,请将以下值设置为 true。在部署前设置为 false 以避免泄漏异常信息 --><serviceDebug includeExceptionDetailInFaults="false"/></behavior></serviceBehaviors></behaviors><protocolMapping><add binding="basicHttpsBinding" scheme="https" /></protocolMapping> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /></system.serviceModel>
Visual Studio 2015
与Visual Studio 2013 一致
Visual Studio 2017
有两种调用模式。
一种调用为传统的Framework模式,该种模式配置信息与Visual Studio 2013 一致。
一种调用为采用.Net Core 模式,该种模式下无默认配置文件。