I built POCO in Visual Studio 2010 and wrote a simple program. In VS 2010 POCO everything works great,
but if I take compiled DLL and lib, create project in VC++ Express 2008 and use the same program, I will get an exception
- Code: Select all
try{
POP3ClientSession session("pop3.something.com", 110); //=> throws an exception
...
}catch(POP3Exception & exc){
cout<<exc.displayText();
} catch (exception & e) {
cout << e.what() << endl; //= > it's Timeout
}
Firewall is turned off and cmd ping on pop3.something.com is ok.
Could you please help me and tell me what am I doing wrong?
Thank you.





