Various Address Format in WCF HTTP Address The most common address format for a service is HTTP Address. format: http://domainname|machinename [:port]/path or paths HTTPS Address Same as HTTP Address but HTTPS ca be secured by using SSL (Secure Socket Layer) and need to obtain a valid certificates. format: https://domainname|machinename [:port]/path or paths TCP Address WCF provides a new TCP based network protocol for high performance communication. format: net.tcp://domainname|machinename [:port]/path or paths MSMQ Address MSMQ address format differs from others. format: net.msmq://host name/ [private]/queue-name
Various Address Format in WCF