Hi all,
I want to open a URL(
http://10.14.15.23/test/test.aspx) which is present in the server.I am using the following code.
CInternetSession objInetSession;
try
{
CStdioFile* objStdFile = objInetSession.OpenURL("http://10.14.15.23/test/test.aspx",1,INTERNET_FLAG_TRANSFER_ASCII ,NULL,0);
}
catch(CInternetException* exp)
{
exp->GetErrorMessage(lpErr,sizeof(lpErr),NULL);
::AfxMessageBox(lpErr,MB_ICONSTOP);
return 0;
}
Everything is working fine. But, the server local user account, which is configured in IIS for anonymous access, gets locked frequently. So, i am not able to access this link.
Server machine has a policy that if we enter wrong password for more than 4 times while logging,the user account will get locked.
Can anyone please tell me the reason for this user account lock?
Thanks,