Thanks Even,<br><br>I&#39;ve been mailing with Tamas already.<br>I want to build GDAL myself because we want to add additional libraries as libKML, SpatiaLite and PostGIS.<br><br>When I do <span style="font-family: courier new,monospace;">curl.exe -V</span> I get<br>

<span style="font-family: courier new,monospace;">curl 7.21.6 (i386-pc-win32) libcurl/7.21.6 OpenSSL/1.0.0d libssh2/1.2.8</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp scp s</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">ftp smtp smtps telnet tftp</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">Features: AsynchDNS Largefile NTLM SSL</span><br>

<br>When I do <span style="font-family: courier new,monospace;">curl <a href="https://my.server.com">https://my.server.com</a></span> I get <br><span style="font-family: courier new,monospace;">curl: (60) SSL certificate problem, verify that the CA cert is OK. Details:</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed</span><br style="font-family: courier new,monospace;"><br>When I do <span style="font-family: courier new,monospace;">curl <b>-k</b> <a href="https://my.server.com">https://my.server.com</a></span> I get the result I want.<br>

So curl is properly configured.<br><br>Do I need to change something in my nmake.opt of GDAL or do I need to use ogrinfo and ogr2ogr in a different way so I can pass the -k option?<br><br>Thanks,<br><br>Paul<br><br><br><div id="WISESTAMP_SIG_9714">

<span style="font-size: 13.3px; font-family: Verdana, Arial, Helvetica, sans-serif;"><div style="border: 1px solid #e5e5e5;background-color: #f8f8f8;padding: 0.8em 0.8em 0.3em 0.8em;"><div style="margin: 0 0 8px 0"><p style="margin:0; ">

<span><strong><img style="float: left; margin-left: 5px; margin-right: 5px;" src="http://www.bontepaarden.nl/bontepaarden/images/newButton.png" alt="" height="120" width="160">Paul Meems </strong><br><span>Release manager, configuration manager</span><br>

<span>and forum moderator of MapWindow GIS.</span><br><a href="http://www.mapwindow.org/" target="_blank"><span>www.mapwindow.org</span></a><br><br><span>Owner of MapWindow.nl - Support for</span><br><span>Dutch speaking users.</span><br>

<a href="http://www.mapwindow.nl/" target="_blank"><span>www.mapwindow.nl</span></a><br></span></p>
<p style="margin:0; "><strong><br></strong></p></div></div><img src="http://p1.wisestamp.com/pixel.png?p=mozilla&amp;v=2.2.1&amp;t=1305879156918&amp;u=7429914&amp;e=6645" height="1" width="1"></span></div><br><br><br><div class="gmail_quote">

2011/5/19 Even Rouault <span dir="ltr">&lt;<a href="mailto:even.rouault@mines-paris.org">even.rouault@mines-paris.org</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Le jeudi 19 mai 2011 10:22:08, Paul Meems a écrit :<br>
<div class="im">&gt; Hi List,<br>
&gt;<br>
&gt; I&#39;m still working on Win7 with VS2008 and I try to add libcurl to GDAL so<br>
&gt; we can use the new WFS driver.<br>
&gt; Two days ago I already succeeded in compile just libcurl and add it to<br>
&gt; GDAL. But then the WFS driver doesn&#39;t work with https links.<br>
&gt;<br>
&gt; So yesterday I&#39;ve been trying for almost 10 hours to get libcurl, openssl<br>
&gt; and libssh to compile together.<br>
&gt; I&#39;m using<br>
&gt; <a href="http://curl.haxx.se/libcurl/c/Using-libcurl-with-SSH-support-in-Visual-Stud" target="_blank">http://curl.haxx.se/libcurl/c/Using-libcurl-with-SSH-support-in-Visual-Stud</a><br>
</div>&gt; io-2008.pdfas a guide and downloaded and installed:<br>
<div class="im">&gt; * ActivePerl<br>
&gt; * OpenSSL<br>
&gt; * libSSH2<br>
&gt; * Netwide Assembler<br>
<br>
</div>Did you try Tamas&#39; builds ? It seems they have SSL support according to his<br>
blog entry :<br>
<br>
<a href="http://szekerest.blogspot.com/2010/12/daily-built-binary-packages-for.html" target="_blank">http://szekerest.blogspot.com/2010/12/daily-built-binary-packages-for.html</a><br>
<div><div></div><div class="h5"><br>
&gt;<br>
&gt; I&#39;ve got the necessary files now. I also did what was suggested in Appendix<br>
&gt; A of the PDF.<br>
&gt;<br>
&gt; But when I do ogrinfo -ro WFS:<a href="https://my.testserver.com" target="_blank">https://my.testserver.com</a> I get this<br>
&gt; response: Error returned by server : Protocol https not supported or<br>
&gt; disabled in libcurl<br>
&gt;<br>
&gt; Today I tried checking if libcurl is configured properly, but I&#39;m lost in<br>
&gt; the non-windows makefile and perl files.<br>
&gt; But because I followed the guide I assume libcurl is correctly build.<br>
&gt;<br>
&gt; Most likely I need to make additional changes to my nmake.opt for GDAL.<br>
&gt; Currently I have this:<br>
&gt; CURL_DIR =    $(GDAL_HOME)\..\cUrl<br>
&gt; CURL_INC = -I$(CURL_DIR)/include<br>
&gt; CURL_LIB = $(CURL_DIR)/lib/DLL-Release/libcurl_imp.lib wsock32.lib<br>
&gt; wldap32.lib winmm.lib<br>
&gt;<br>
&gt; I&#39;m also not aware what is best: using a dynamic or static library, but<br>
&gt; that is a more general question ;)<br>
&gt;<br>
&gt; So please advice me how to enable https.<br>
&gt;<br>
&gt; Thanks,<br>
&gt;<br>
&gt; Paul<br>
&gt;<br>
&gt;<br>
&gt; *Paul Meems *<br>
&gt; Release manager, configuration manager<br>
&gt; and forum moderator of MapWindow GIS.<br>
&gt; <a href="http://www.mapwindow.org" target="_blank">www.mapwindow.org</a><br>
&gt;<br>
&gt; Owner of MapWindow.nl - Support for<br>
&gt; Dutch speaking users.<br>
&gt; <a href="http://www.mapwindow.nl" target="_blank">www.mapwindow.nl</a><br>
&gt;<br>
</div></div>&gt; *<br>
&gt; *<br>
</blockquote></div><br>