随笔分类 - WCF
摘要:原因在于没有设置WFC支持Http行为解决方法是将webconfig文件改成下面的格式:<?xml version="1.0"?><configuration> <system.web> <compilation debug="true" targetFramework="4.0" /> </system.web> <system.serviceModel> <protocolMapping> <add scheme="http&quo
阅读全文
摘要:WSDL:WEB SERVICE DESCRIPTION LANGUAGE1.SERVICE CONTRACTSThe service contract further defines the message exchange pattern (Request/Reply/One-Way/Duplex) for each service operation.2. you should always decouple the abstract service definition from the concrete implementation,if you want to produce pr
阅读全文
摘要:1.WS* ProtocolsWCF can implement the WS* protocols by using a binding called WsHttpBinding.This binding makes use of some of the WS* protocols and adds the needs behaviors,such as transactional message calls,reliability,discovery,and addressing.2.WSDLWSDL is a XML-formatted definition of the contrac
阅读全文