Re: VC++ Runtime Error
Here's this. The function from which that code is being called (with
debug lines removed). This runs in it's own thread which consists
of: while (true) { readFeed, Sleep( X ) }
void ProgramNameDlg::readFeed()
{
CInternetSession mySession(NULL,
1,PRE_CONFIG_INTERNET_ACCESS,NULL,NULL,INTERNET_FLAG_DONT_CACHE);
CHttpFile *pHttpFile;
CString RSSURL = "http://www.website.com/FEED.xml";
CString line[1000];
int lnumLines=0;
feed = ""; // reset the contents of the feed CString
// Open HTTP file
try
{
pHttpFile = (CHttpFile *) mySession.OpenURL(RSSURL, 1,
INTERNET_FLAG_TRANSFER_ASCII | INTERNET_FLAG_RELOAD, NULL, 0);
}
catch (CInternetException)
{
MessageBox("Received Exception from OpenURL()"); // for
debugging...handle exception here
}
if(pHttpFile == NULL) MessageBox("Error in OpenURL");
else
{
bool rdflg;
lnumLines=0;
while(lnumLines<1000)
{
// read the next line
rdflg = pHttpFile->ReadString(line[lnumLines]);
// abandon the read if a bad read is encountered
// THIS SHOULD ALSO BUST US OUT OF HERE WHEN WE REACH THE EOF
if( !rdflg )
{
break;
}
lnumLines++;
}
}
for(int i=0;i<lnumLines;i++)
{
feed+=line[i];
}
mySession.Close();
pHttpFile->Close();
return;
}