版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、wcf之helloworld 不说闲话了,直接hello了。创建服务1、 选择file->new->project->empty project创建一空项目,把solution命名为wcfhello。2、 右击wcfhello项目,add->new item添加接口ihello。在属性页把output type改为class library。3、 在接口中添加一方法,public interface ihelloservice string helloworld(); 4、 add references添加对程序集syst
2、em.servicemodel的引用。using system.servicemodel;5、 用servicecontractattribute修饰ihello接口使其成为服务契约,同时用operationcontractattribute修饰方法helloworld(),使其包含在服务契约中。 servicecontract(namespace=" public interface ihelloservice operationcontract string helloworld(); 6、 添加服务类helloservice.cs。
3、 public class helloservice: ihelloservice public string helloworld() return "helloworld_wcf" 寄存服务1、 添加console application项目,命名为hellohost。2、 引用system.servicemodel程序集。3、 添加引用项目wcfhello。 using system;using system.servicemodel;using wcfhello;namespace hellohost class pro
4、gram static void main(string args) using (servicehost host = new servicehost(typeof(helloservice), new uri("http:/localhost:8000/hellowcf") host.addserviceendpoint(typeof(ihelloservice), new basichttpbinding(), "hellowcf"); host.open(); console.writeline("hello service is ru
5、nning."); console.readline(); 创建代理调用服务1、 添加一console application项目,命名为helloclient。2、 引用system.servicemodel程序集。3、 复制契约到客户端ihelloservice。 using system.servicemodel;namespace helloclient servicecontract(namespace = " public interface ihelloservice operationcontract strin
6、g helloworld(); using system;using system.servicemodel;namespace helloclient class program static void main(string args) endpointaddress epaddr = new endpointaddress("http:/localhost:8000/hellowcf/helloservice"); ihelloservice proxy = channelfactory<ihelloservice>.createchannel(new b
7、asichttpbinding(), epaddr); console.writeline(proxy.helloworld(); console.writeline("client is running."); console.readline(); 运行结果如下:查看helloservice元数据,修改hellohost项目如下:static void main(string args) using (servicehost host = new servicehost(typeof(helloservice), new uri("http:/localhos
8、t:8000/hellowcf") host.addserviceendpoint(typeof(ihelloservice), new basichttpbinding(), "helloservice"); servicemetadatabehavior behavior = new servicemetadatabehavior(); behavior.httpgetenabled = true; host.description.behaviors.add(behavior); host.addserviceendpoint(typeof(imetadat
9、aexchange), metadataexchangebindings.createmexhttpbinding(), "mex"); host.open(); console.writeline("hello service is running."); console.readline(); 运行服务器端服务,在浏览器重查看元数据如图servicemodel metadata utilityservicemodel metadata utility是一个命令工具,叫做svcutil.exe的可执行文件,用它可以生成客户端代理类和配置文件,如图执行后
10、在“d:visual studio 2010projectswcfhellohelloclient”下面生成一个app.config配置文件和serviceproxy.cs类。app.config的内容如:而后修改客户端代码:static void main(string args) /endpointaddress epaddr = new endpointaddress("http:/localhost:8000/hellowcf/helloservice"); /ihelloservice proxy = channelfactory<ihelloservice>.createchannel(new basichttpbinding(), epaddr); hellose
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 【初中生物】真菌-2024-2025学年七年级生物上册同步教学课件(人教版2024)
- 【初中生物】微生物的分布-2024-2025学年七年级生物上册同步备课课件(人教版2024)
- 2024就智能工厂建设与运营的合资合同
- 2024年度清雪业务承包合同
- 2024年度特许经营与加盟合同
- 2024建设工程的项目合作协议合同范本
- 2024个人小额贷款合同
- 2024股份合伙人合同范本
- 2024年工程设计合作伙伴协议
- 2024年度原材料采购担保合同
- 新时代大中小学思政课一体化建设研究
- 工业自动化系统集成项目验收方案
- 新教科版科学六年级上册全册实验汇总 (超全)
- 王洪图黄帝内经80课时讲稿
- 摊铺机司机班组级安全教育试卷
- 重症肌无力指南
- 限制被执行人驾驶令申请书
- 项目主要施工管理人员情况
- 个人借条电子版模板
- 关于学习“国语普通话”发声亮剑【三篇】
- 玻璃厂应急预案
评论
0/150
提交评论