Paul blog

Explaining thoughts and findings is a great way to learn

Browse by Tags

All Tags » WCF (RSS)
How can we convert a local path to a UNC path in c#?
Uniform Naming Convention (UNC): According to wiki, UNC specifies a common syntax to describe the location of a network resource, such as a shared file, directory, or printer in Windows OS. In client-server development, we can send a server path to its...
Posted: 07-24-2009 9:27 PM by Razan | with no comments
Filed under: , ,
Testing server whether it is reachable or not in c#
In client server development, we need this feature in many situations including: When client starts before server, it should periodically check whether server is UP or not. As soon as it gets server is up, it will connect with it to do its own business...
Posted: 07-18-2009 1:46 PM by Razan | with no comments
Filed under: , ,
Why should we use Channel factory instead of proxy generation to construct communication channel between client and server in WCF?
If we use proxy class to construct communication channel between server and client , then when we will change data contract, Service contract, callback contract we need to regenerate the proxy for client. If we use channel factory to construct the channel...
Posted: 03-24-2009 12:27 PM by Razan | with no comments
Filed under: