تسجيل الدخول

مشاهدة النسخة كاملة : Heavy Duty Client/Server Application



C++ Programming
08-04-2009, 05:50 PM
Well, I developed a very basic client/server application by extracting knowledge from the article.

http://69.10.233.10/KB/IP/serversocket.aspx[^ (http://69.10.233.10/KB/IP/serversocket.aspx)]


The application works fine when client/server exchanges text data (Hello, Hi etc of few bytes). But when server sends the image data (say a bmp of 3 MB). The send function sends data properly but on receiving side, the received bits are just 256. where the rest bits gone?


How can we transfer image data (upto MB) through the client/server application? any idea