Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
2k views

Using MFC in Windows service?

I'm starting to develop a Windows service. I want to use some classes from my own, that has little dependencies to some MFC classes like CString, CSocket, CArchive, CMemFile and CObject. MSDN says you ...
1
vote
2answers
176 views

MFC CSocket keepalive packets not sending

I am trying to find a way for my application to detect disconnects via TCP when I am connecting to a remote server. I was thinking the obvious way to do this was to use the TCP keepalive option. This ...
0
votes
0answers
56 views

NTier with MFC…?

I am writing a Visual C++ MFC application and getting stumped over what seems to be simple issue. There is a server and database (MSSQL) Open ports are HTTP, HTTPS There is the MFC client. It needs ...
0
votes
1answer
1k views

CAsyncSocket and threading

I'm using a MFC CAsyncSocket to do some network communication in a multi-threaded environment. After several hours of trying to get the accepted sockets to accept incoming data I came across a page ...
0
votes
1answer
498 views

Why won't MFC::CHttpFile 'PUT' for me?

My code talks to a little Java application provided by a vendor. This Java app sets up a web server at localhost:57000 which is used to control the state of 'the machine'. For the purpose of this ...
0
votes
3answers
306 views

Getting the list of shares connected to a machine

Consider that i have connected to multiple shares of a remote machine( \\machineA\share1, \\machineA\share2....) along with shares on other remote machines. Now my question is how to find only those ...