<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[SSL Verbindung mit WinINet]]></title><description><![CDATA[<p>Hi</p>
<p>Hat mir jemand ein Beispielcode wie ich mit WinINet eine POST-Anfrage auf einen SSL Server machen kann und dann das Resultat emmpfangen kann?</p>
<p>Vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/158797/ssl-verbindung-mit-wininet</link><generator>RSS for Node</generator><lastBuildDate>Mon, 27 Jul 2026 22:52:27 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/158797.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 08 Sep 2006 14:39:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to SSL Verbindung mit WinINet on Fri, 08 Sep 2006 14:39:19 GMT]]></title><description><![CDATA[<p>Hi</p>
<p>Hat mir jemand ein Beispielcode wie ich mit WinINet eine POST-Anfrage auf einen SSL Server machen kann und dann das Resultat emmpfangen kann?</p>
<p>Vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1133758</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1133758</guid><dc:creator><![CDATA[addict]]></dc:creator><pubDate>Fri, 08 Sep 2006 14:39:19 GMT</pubDate></item><item><title><![CDATA[Reply to SSL Verbindung mit WinINet on Sun, 10 Sep 2006 16:42:18 GMT]]></title><description><![CDATA[<p>nimm duch libcurl!!! WinINet kannst doch vergessen!</p>
<p>dann funzt das zb so: <a href="http://curl.haxx.se/lxr/source/docs/examples/https.c" rel="nofollow">http://curl.haxx.se/lxr/source/docs/examples/https.c</a></p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1134712</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1134712</guid><dc:creator><![CDATA[cpp1]]></dc:creator><pubDate>Sun, 10 Sep 2006 16:42:18 GMT</pubDate></item><item><title><![CDATA[Reply to SSL Verbindung mit WinINet on Sun, 10 Sep 2006 18:13:19 GMT]]></title><description><![CDATA[<p>Danke viel mal!<br />
Sieht sehr vielversprechend aus!<br />
Funktioniert diese Bibliothek auf mit Proxy-Servern?<br />
Hast du ein komplettes Beispiel mit einer POST-Anfrage auf eine SSL-Seite und danach dem dempfangen der Seite?</p>
<p>Vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1134767</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1134767</guid><dc:creator><![CDATA[addict]]></dc:creator><pubDate>Sun, 10 Sep 2006 18:13:19 GMT</pubDate></item><item><title><![CDATA[Reply to SSL Verbindung mit WinINet on Sun, 10 Sep 2006 18:35:43 GMT]]></title><description><![CDATA[<p>siehe hier:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-158939.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-158939.html</a><br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>funzt auch mit proxy!</p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1134777</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1134777</guid><dc:creator><![CDATA[cpp1]]></dc:creator><pubDate>Sun, 10 Sep 2006 18:35:43 GMT</pubDate></item><item><title><![CDATA[Reply to SSL Verbindung mit WinINet on Tue, 12 Sep 2006 13:48:34 GMT]]></title><description><![CDATA[<p>Hi!<br />
Ok ich habe nun versucht die Lib einzubinden. habe Sie unter Optionen unter Verzeichnisse ins Lib und ins include hinzugefügt. Als Funktion habe ich diesen Code eingesetzt:</p>
<pre><code class="language-cpp">CURL *curl;
  CURLcode res;

  curl = curl_easy_init();
  if(curl) {
    /* First set the URL that is about to receive our POST. This URL can
       just as well be a https:// URL if that is what should receive the
       data. */
    curl_easy_setopt(curl, CURLOPT_URL, &quot;https://www.swisscom-mobile.ch/youth/youth_zone_home-de.aspx?login&quot;);
    /* Now specify the POST data */
    curl_easy_setopt(curl, CURLOPT_POSTFIELDS, &quot;isiwebuserid=ID&amp;isiwebpasswd=PW&quot;);

    /* Perform the request, res will get the return code */
    res = curl_easy_perform(curl);

    /* always cleanup */
    curl_easy_cleanup(curl);
  }
</code></pre>
<p>Beim Kompilieren kommen jedoch immer folgende Fehler:</p>
<pre><code class="language-cpp">Verknüpfen...
SwisscomDlg.obj : error LNK2019: Nicht aufgelöstes externes Symbol '__imp__curl_easy_cleanup', verwiesen in Funktion '&quot;public: void __thiscall CSwisscomDlg::OnBnClickedOk(void)&quot; (?OnBnClickedOk@CSwisscomDlg@@QAEXXZ)'
SwisscomDlg.obj : error LNK2019: Nicht aufgelöstes externes Symbol '__imp__curl_easy_perform', verwiesen in Funktion '&quot;public: void __thiscall CSwisscomDlg::OnBnClickedOk(void)&quot; (?OnBnClickedOk@CSwisscomDlg@@QAEXXZ)'
SwisscomDlg.obj : error LNK2019: Nicht aufgelöstes externes Symbol '__imp__curl_easy_setopt', verwiesen in Funktion '&quot;public: void __thiscall CSwisscomDlg::OnBnClickedOk(void)&quot; (?OnBnClickedOk@CSwisscomDlg@@QAEXXZ)'
SwisscomDlg.obj : error LNK2019: Nicht aufgelöstes externes Symbol '__imp__curl_easy_init', verwiesen in Funktion '&quot;public: void __thiscall CSwisscomDlg::OnBnClickedOk(void)&quot; (?OnBnClickedOk@CSwisscomDlg@@QAEXXZ)'
Debug/Swisscom.exe : fatal error LNK1120: 4 unaufgelöste externe Verweise
</code></pre>
<p>Kann mir jemand sagen, was ich noch falsch mache oder was ich vergessen habe?<br />
Vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1135895</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1135895</guid><dc:creator><![CDATA[addict]]></dc:creator><pubDate>Tue, 12 Sep 2006 13:48:34 GMT</pubDate></item></channel></rss>