Click here to Skip to main content
15,890,043 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
Hi,
i need help about display a picture that saved in another computer.I know the path of pic but i could't find the way of connect to other computer and if even i could, i need a function which returns the file...
Posted
Comments
dan!sh 13-Jan-16 4:17am    
Is that other computer in same network and do you have access to file location?

.NET framework has many networking protocols. Let me count:

1) FTP (direct file transfer); See System.Net[^] for this.
2) HttpClient[^] (for HTTP communication)
3) TcpListener[^]/TcpClient[^] (for TCP/IP communication)

You could chose one that may be easy for you! In my opinion, TCP/IP protocol would be simpler. That is not all, there are framework already built to support these services. WCF is one of them. You can build a service that allows clients to communicate with each other and share their resources.

Creating a Web Service to be consumed by connected Devices via Internet[^]
 
Share this answer
 
Comments
More info. +5.
Afzaal Ahmad Zeeshan 13-Jan-16 10:57am    
Thank you, Tadit. :-)
Could be a starting point: Socket Code Examples[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900