- If I host Web service and WCF service on the same machine. The web service consumes the WCF service. Will the communication go through only memory or also the physical network card.
- I can also put it this way. If I have two programs running on the same machine, and they use tcp sockets to communcates to each other, will the IP packet be delivered through the physical network card or it only go through memory. The difference is: if it go through the network card, it may be limited by the speed or cache of the card, right?
Thanks