I have finally built Poco NetSSL, but already the first example doesn't work. The following snippet throws an exception and Debugger.h gets opened in my IDE (Visual Studio 2012).
#include <Poco/Net/HTTPSClientSession.h>
int main()
{
Poco::Net::HTTPSClientSession clientSession;
}
This is the output:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
NULL pointer: _pInstance [in file "c:\users\domenic\desktop\poco-1.4.6p1-all\util\include\poco\util\application.h", line 446]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
The following code just works perfectly...
#include <Poco/Net/HTTPClientSession.h>
int main()
{
Poco::Net::HTTPClientSession clientSession;
}
I suppose it has something to do with OpenSSL. Hopefully someone can help me, I really want to start my project. :(