how to create secure connection
-
Hi all i have a client/server application(infact server is a service and client is a MFC gui) now i have a situation where i need to transfer username and password over the network to the server from the gui.........but sending it in plain text is harmful....so my question is how do i start a secure connection to the server n send the information to it n then close the secure connection thanks kunal
-
Hi all i have a client/server application(infact server is a service and client is a MFC gui) now i have a situation where i need to transfer username and password over the network to the server from the gui.........but sending it in plain text is harmful....so my question is how do i start a secure connection to the server n send the information to it n then close the secure connection thanks kunal
void CWDlg::OnBConnect() { // TODO: Add your control notification handler code here strcpy(sessionid ,m_aapi.Login("usid","pssword"); }
-
void CWDlg::OnBConnect() { // TODO: Add your control notification handler code here strcpy(sessionid ,m_aapi.Login("usid","pssword"); }
hi can u elobarate on wat u r trying to say...i didnt get it.....wat is sessionid...a char array??? Also i know how to get username n password information...i want to know how to send it over the network in a secure way....copying to a array n sending it in plain text is harmful.....so please suggest me a way to send it over the network in secure way thanks kunal
-
Hi all i have a client/server application(infact server is a service and client is a MFC gui) now i have a situation where i need to transfer username and password over the network to the server from the gui.........but sending it in plain text is harmful....so my question is how do i start a secure connection to the server n send the information to it n then close the secure connection thanks kunal
use SSL http://www.codeproject.com/internet/sslsocket.asp -- modified at 1:51 Monday 31st July, 2006
never say die