A WCF service endpoint consists of 3 things.
Address : (Address where the WCF service is available)
Contract :(Specifies what the service can do.The service contract describes which operation the client can perform on the service)
Binding : A WCF binding defines how the client needs to communicate with the service. The WCF binding that you choose determines the following for the communication between the client and service.
Source :
http://stackoverflow.com/questions/10849920/different-wcf-bindings-their-differences-and-compatibility-with-other-platforms
Related Post :
Different-option-of-hosting-wcf-service
Binding-in-wcf-choosing-right-wcf
Exchanging-metadata-in-wcf
Some-interesting-facts-about-data-contract
Knowntype-attribute-in-wcf
Associating-knowntype-in-wcf
Message-contract-in-wcf
Exception-handling-in-wcf
Exception Handling in WCF - SOAP Fault in WCF
Exception Handling in WCF - Unhandled Exception in WCF
Exception Handling in WCF - Creating and Throwing Strongly Typed SOAP Fault
Address : (Address where the WCF service is available)
Contract :(Specifies what the service can do.The service contract describes which operation the client can perform on the service)
Binding : A WCF binding defines how the client needs to communicate with the service. The WCF binding that you choose determines the following for the communication between the client and service.
- Transport Protocol (for example, HTTP, TCP, Named Pipe, MSMQ)
- Message Encoding (for example, text/xml, binary)
- Protocol (for example, reliable messaging, transaction support)
Source :
http://stackoverflow.com/questions/10849920/different-wcf-bindings-their-differences-and-compatibility-with-other-platforms
Related Post :
Different-option-of-hosting-wcf-service
Binding-in-wcf-choosing-right-wcf
Exchanging-metadata-in-wcf
Some-interesting-facts-about-data-contract
Knowntype-attribute-in-wcf
Associating-knowntype-in-wcf
Message-contract-in-wcf
Exception-handling-in-wcf
Exception Handling in WCF - SOAP Fault in WCF
Exception Handling in WCF - Unhandled Exception in WCF
Exception Handling in WCF - Creating and Throwing Strongly Typed SOAP Fault

No comments:
Post a Comment