无为清净楼资源网 Design By www.qnjia.com
本文为大家分享了.net WCF简单实例,供大家参考,具体内容如下
1.创建WCF项目
2.系统自动生成IWcfService
// 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的接口名“IService1”。 [ServiceContract] public interface IWcfService { [OperationContract] string GetData(int value); [OperationContract] CompositeType GetDataUsingDataContract(CompositeType composite); // TODO: 在此添加您的服务操作 } // 使用下面示例中说明的数据约定将复合类型添加到服务操作。 [DataContract] public class CompositeType { bool boolValue = true; string stringValue = "Hello "; [DataMember] public bool BoolValue { get { return boolValue; } set { boolValue = value; } } [DataMember] public string StringValue { get { return stringValue; } set { stringValue = value; } } }
(1)服务契约:ServiceContract(服务)和OperationContract (方法)
(2)数据契约:DataContract(类)和DataMember(属性) 用于类和结构上
(3)消息契约:MessageContract 用于soap消息
3.WCF服务类
public class WcfService : IWcfService { public string GetData(int value) { return string.Format("You entered: {0}", value); } public CompositeType GetDataUsingDataContract(CompositeType composite) { if (composite == null) { throw new ArgumentNullException("composite"); } if (composite.BoolValue) { composite.StringValue += "Suffix"; } return composite; } }
4.服务配置文件
<system.serviceModel> <!--配置绑定节点Start--> <bindings> <basicHttpBinding> <binding name="basicHttpBinding0" maxReceivedMessageSize="2147483647"> <readerQuotas maxStringContentLength="2147483647"/> <security mode="None" /> </binding> </basicHttpBinding> <netTcpBinding> <binding name="netTcpBinding0" maxReceivedMessageSize="2147483647"> <readerQuotas maxStringContentLength="2147483647"/> <security mode="None" /> </binding> </netTcpBinding> <wsHttpBinding></wsHttpBinding> </bindings> <!--配置绑定节点End--> <!--配置服务节点Start--> <services> <!--配置某一服务,在这里可以指定服务名称--> <service name="WcfServiceTest.WcfService"> <endpoint address="aaa" binding="basicHttpBinding" bindingConfiguration="basicHttpBinding0" name="BasicHttpBinding_WcfService" contract="WcfServiceTest.IWcfService"> <identity> <dns value="localhost"/> </identity> </endpoint> <endpoint address="" binding="netTcpBinding" bindingConfiguration="netTcpBinding0" name="NetTcpBinding_WcfService" contract="WcfServiceTest.IWcfService"> <identity> <dns value="localhost"/> </identity> </endpoint> </service> </services> <!--配置服务节点End--> <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>
5.iis部署WCF服务
6.添加客户端项目并添加服务引用
7.Main程序中添加wcf服务并调用方法
class Program { static void Main(string[] args) { var client = new WcfService.WcfServiceClient(); try { var str = client.GetData(2046); Console.WriteLine(string.Format("内容:{0}", str)); client.Close(); } catch (Exception ex) { Console.WriteLine("出现异常!"); client.Abort(); } Console.ReadLine(); } }
8.客户端配置文件
<system.serviceModel> <bindings> <basicHttpBinding> <binding name="BasicHttpBinding_WcfService" /> </basicHttpBinding> <netTcpBinding> <binding name="NetTcpBinding_WcfService"> <security mode="None" /> </binding> </netTcpBinding> </bindings> <client> <!--<endpoint address="http://localhost/WcfServiceTest/WcfService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_WcfService" contract="WcfService.IWcfService" name="BasicHttpBinding_WcfService" />--> <endpoint address="net.tcp://localhost/WcfServiceTest/WcfService.svc" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_WcfService" contract="WcfService.IWcfService" name="NetTcpBinding_WcfService"> <identity> <dns value="localhost" /> </identity> </endpoint> </client> </system.serviceModel>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
标签:
.net,WCF,实例
无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月16日
2024年11月16日
- 《怪猎荒野》PS5Pro主机版对比:B测性能都不稳定
- 黄宝欣.1992-黄宝欣金装精选2CD【HOMERUN】【WAV+CUE】
- 群星.1996-宝丽金流行爆弹精丫宝丽金】【WAV+CUE】
- 杜德伟.2005-独领风骚新歌精选辑3CD【滚石】【WAV+CUE】
- 安与骑兵《心无疆界》[低速原抓WAV+CUE]
- 柏菲唱片-群星〈胭花四乐〉2CD[原抓WAV+CUE]
- 金典女声发烧靓曲《ClassicBeautifulSound》2CD[低速原抓WAV+CUE]
- 王杰1992《封锁我一生》粤语专辑[WAV+CUE][1G]
- 群星《一人一首成名曲 (欧美篇)》6CD[WAV/MP3][7.39G]
- 东来东往2004《回到我身边·别说我的眼泪你无所谓》先之唱片[WAV+CUE][1G]
- MF唱片-《宝马[在真HD路上]》2CD[低速原抓WAV+CUE]
- 李娜《相信我》新时代[WAV+CUE]
- 2019明达发烧碟MasterSuperiorAudiophile[WAV+CUE]
- 蔡幸娟.1993-相爱容易相处难【飞碟】【WAV+CUE】
- 陆虎.2024-是否愿意成为我的全世界【Hikoon】【FLAC分轨】