[SOLVED] How to use SSL support without manualy building Qt libraries?
-
I used Windows QtSDK online installer. By default the network module has openssl support disabled. The online installer works great for me since it has very good update mechanism, I would really like to continue use pre-built libraries.
I already have libeay32.dll, libssl32.dll and ssleay32.dll in my application exe directory. I need to enable Qt to use them. Is there any way of enabling SSL support without manually building Qt libraries?
Thanks in advance!
-
[quote author="rutger" date="1338319052"]To start at the beginning: did you include the line CONFIG += openssl-linked to your project file?[/quote]
Yes I tried with CONFIG += openssl-linked and CONFIG += openssl, rebuild the project but again I get network error "Error creating SSL context () ". I tried on various domains including those with valid and invalid SSL certificate.
I have copied openssl dll files from "QtSDK\QtCreator\bin" to my application exe directory. I guess these dll are fine since QtCreator is using them.
-
I use QtWebKit in my application (QWebView) and can access HTTPS sites without problem. First I was happy to access the Internet at all :-) but later was not satisfied and tried to include SSL sites also. What I did was:
- took the parts of code from the browser code which was I believe a Qt Labs project
- added CONFIG += openssl-linked
- QT += core network sql svg webkit xml
- copied from the QtSdk the (MingW) libeay32.dll and ssleay32.dll next to the executable
and the HTTPS sites are available
-
Do I need to include any openssl header or it is already included with #include <QtNetwork>?
I use MSVC2008 compiler via QtCreator so I guess dlls compiled with MinGW may not work, but the only libeay32.dll and ssleay32.dll are inside "C:\QtSDK\QtCreator\bin" directory, there are no such dlls in QtSDk MSVC folder. I download these files from "here":http://slproweb.com/download/Win32OpenSSL_Light-1_0_1c.exe but no solution again. I downloaded and install Microsoft Visual C++ 2008 SP1 Redistributable Package (x86) and again no solution.
-
-
Big thanks to rutger and Volker for the inputs.
It finally worked. When I run the application from the QtCreator the dlls are not linked. While the working path in the project's run settings is in the place where libeay32.dll and ssleay32.dll reside somehow the are not linked. When I run the application independently with the dlls next to the exe they are linked OK. Funny I have other dlls in the working directory and they are linked fine even when I run the application directly from QtCreator.