Reputation: 1
I have problems compiling with openssl in pro-c.
Also, libcurl suddenly stop after check verification.
So I’m looking for other way of https request.
Can anybody let me know an example of https request without using libcurl/openssl?
Upvotes: 0
Views: 269
Reputation: 488
I assume you are using the Oracle database client library. I have experienced problems using OpenSSL libraries together with Oracle clients because they both export the same symbols (function names). During runtime, those functions are resolved dynamically, and calls from Oracle client end up calling OpenSSL and fail, or calls from libcurl end up in Oracle client and fail. The solution that worked was to link with static libraries of OpenSSL and libcurl.
Upvotes: 0