Hi All,
I want to clear my doubts about some questions related to web services and WCF. Following are my doubts..
- What is the message format in Web Services , like in WCF every message is a SOAP message?
- Can we use TCP/IP protocol in Web Services if not then why not ?
- Why we use DataContractSerializer in WCF while we already had XMLSerializer,SOAP Serializer,BinarySerializer in .Net Framework?
- When i create a wcf service and define endpoints even when i don't add IMetadaExchange endpoint, i just add service behavior and say
httpGetEnabled = true
, why it's possible to create a proxy class by usingAddServiceReference
, i mean how can someone access my service details untill i don't exposemex
endpoint.
Please help me out in clearing my doubts in above questions.