Click here to Skip to main content
15,922,015 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Removing repeated path Pin
Richard MacCutchan30-Oct-12 0:40
mveRichard MacCutchan30-Oct-12 0:40 
QuestionRe: Removing repeated path Pin
David Crow30-Oct-12 3:18
David Crow30-Oct-12 3:18 
QuestionWIC/C++: People Tagging: Unable to set the People Tagging metadata Pin
Morpheus2matrix29-Oct-12 9:27
Morpheus2matrix29-Oct-12 9:27 
AnswerRe: WIC/C++: People Tagging: Unable to set the People Tagging metadata Pin
enhzflep29-Oct-12 15:27
enhzflep29-Oct-12 15:27 
GeneralRe: WIC/C++: People Tagging: Unable to set the People Tagging metadata Pin
Morpheus2matrix29-Oct-12 22:06
Morpheus2matrix29-Oct-12 22:06 
GeneralRe: WIC/C++: People Tagging: Unable to set the People Tagging metadata Pin
enhzflep30-Oct-12 9:16
enhzflep30-Oct-12 9:16 
GeneralRe: WIC/C++: People Tagging: Unable to set the People Tagging metadata Pin
Morpheus2matrix30-Oct-12 21:56
Morpheus2matrix30-Oct-12 21:56 
Questionfputc() writes an extra character Pin
Member 923664029-Oct-12 5:25
Member 923664029-Oct-12 5:25 
AnswerRe: fputc() writes an extra character Pin
Member 923664029-Oct-12 6:01
Member 923664029-Oct-12 6:01 
GeneralRe: fputc() writes an extra character Pin
Member 923664029-Oct-12 6:12
Member 923664029-Oct-12 6:12 
GeneralRe: fputc() writes an extra character Pin
Chris Meech29-Oct-12 6:29
Chris Meech29-Oct-12 6:29 
AnswerRe: fputc() writes an extra character Pin
Richard MacCutchan29-Oct-12 6:50
mveRichard MacCutchan29-Oct-12 6:50 
QuestionApplication error 0xc0150002 when run MFC in Window 7 Pin
Andraw11129-Oct-12 4:32
Andraw11129-Oct-12 4:32 
AnswerRe: Application error 0xc0150002 when run MFC in Window 7 Pin
Chris Meech29-Oct-12 6:40
Chris Meech29-Oct-12 6:40 
GeneralRe: Application error 0xc0150002 when run MFC in Window 7 Pin
Andraw11129-Oct-12 6:46
Andraw11129-Oct-12 6:46 
GeneralRe: Application error 0xc0150002 when run MFC in Window 7 Pin
Chris Meech29-Oct-12 6:53
Chris Meech29-Oct-12 6:53 
GeneralRe: Application error 0xc0150002 when run MFC in Window 7 Pin
Rolf Kristensen29-Oct-12 9:12
Rolf Kristensen29-Oct-12 9:12 
GeneralRe: Application error 0xc0150002 when run MFC in Window 7 Pin
Andraw11129-Oct-12 11:32
Andraw11129-Oct-12 11:32 
Questionmicrosoft apifor upnp Pin
Saed Leghaee28-Oct-12 8:49
Saed Leghaee28-Oct-12 8:49 
AnswerRe: microsoft apifor upnp Pin
«_Superman_»28-Oct-12 19:47
professional«_Superman_»28-Oct-12 19:47 
GeneralRe: microsoft api for upnp Pin
Saed Leghaee29-Oct-12 8:28
Saed Leghaee29-Oct-12 8:28 
GeneralRe: microsoft api for upnp Pin
enhzflep29-Oct-12 15:37
enhzflep29-Oct-12 15:37 
GeneralRe: microsoft api for upnp Pin
Saed Leghaee3-Dec-12 8:15
Saed Leghaee3-Dec-12 8:15 
QuestionGetting error while sending data from client to Server in Socket using TCP/IP Pin
shanmugarajaa26-Oct-12 21:43
shanmugarajaa26-Oct-12 21:43 
Friends,
I have created two application Server and Client connected with Socket(TCP/IP). Now If i send the data from client to server then i getting error in this line ar.WriteObject(&m_sListOut);" . I have cited the code below.

Code:
C++
//Socket created and connected with server application
pSocket->creat();
pSocket->Connect(IPaddr,Port);

m_File = new CSocketFile(pSocket);
m_pArchIn = new CArchive(m_File,CArchive::load);
m_pArchOut = new CArchive(m_File,CArchive::store);

void SendDataToServer( )
{
  CTransData oData;       // deriver from CObject class
  oData.m_sListOut.AddTail(sPackData);
  pSocket->SendData(&oData);
}

void SendData(CTransData *pData)
{
  if (m_pArchOut != NULL)
  {
	TRY
	{
	   pData->Serialize(*m_pArchOut);
	   m_pArchOut->Flush();
	}
	CATCH(CFileException, e)
	{
	  m_pArchOut->Abort();
	  delete m_pArchOut;
	  m_pArchOut = NULL;
	}
	END_CATCH
  }

}

CTransData.cpp

void CTransData::Serialize(CArchive& ar)
{
   if (ar.IsStoring())
   {
       ar.WriteObject(&m_sListOut);     // In This Line I get Error
   }
   else
  {
      m_sListIn = (CStringList*)ar.ReadObject(RUNTIME_CLASS(CStringList));
  }

}
I have written same code in the Server side application and server is able to send the data to client without any problem. In case of Client, could not send the data to server side. Knidly help me to fix this problem
AnswerRe: Getting error while sending data from client to Server in Socket using TCP/IP Pin
Richard MacCutchan26-Oct-12 22:19
mveRichard MacCutchan26-Oct-12 22:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.