<?xml version='1.0' encoding="utf-8"?>
      <rss version='2.0'>
      <channel>
      <title>Форум на Исходниках.RU</title>
      <link>https://forum.sources.ru</link>
      <description>Форум на Исходниках.RU</description>
      <generator>Форум на Исходниках.RU</generator>
  	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265397</guid>
        <pubDate>Wed, 17 Dec 2003 17:22:21 +0000</pubDate>
        <title>WinInet (Документация, исходники, и.т.)</title>
        <link>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265397</link>
        <description><![CDATA[P.O.D:  ну, работать с FTP через php/cgi. ]]></description>
        <author>P.O.D</author>
        <category>Delphi: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265375</guid>
        <pubDate>Wed, 17 Dec 2003 16:46:30 +0000</pubDate>
        <title>WinInet (Документация, исходники, и.т.)</title>
        <link>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265375</link>
        <description><![CDATA[Zvik:  <!--QuoteBegin-P.O.D+17.12.03, 19:29--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>Цитата</b> (P.O.D &#064; 17.12.03, 19:29)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin--> может я ошибаюсь, но ничего не получиться.<br><!--QuoteBegin--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>Цитата</b> </td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->The FTP functions deal with FTP file and directory manipulation and navigation. Applications that use a CERN proxy exclusively must use the InternetOpenUrl function because CERN proxies do not support FTP.<!--QuoteEnd--></td></tr></table><div class='postcolor'><!--QuoteEEnd--><br><a href='http://shu.ru/tech/wininet/ftp-1.htm#wininet_ftp' target='_blank'>http://shu.ru/tech/wininet/ftp-1.htm#wininet_ftp</a><br><br>я бы сделал на php или cgi работу с ftp, а потом уже конектился бы через прокси, с аутентификацией к скрипту. <!--QuoteEnd--></td></tr></table><div class='postcolor'><!--QuoteEEnd--><br>А пояснить слегка можно, т.к. я не совсем понял. По поводу php и cgi... ]]></description>
        <author>Zvik</author>
        <category>Delphi: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265359</guid>
        <pubDate>Wed, 17 Dec 2003 16:29:51 +0000</pubDate>
        <title>WinInet (Документация, исходники, и.т.)</title>
        <link>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265359</link>
        <description><![CDATA[P.O.D:  может я ошибаюсь, но ничего не получиться.<br><!--QuoteBegin--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>Цитата</b> </td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->The FTP functions deal with FTP file and directory manipulation and navigation. Applications that use a CERN proxy exclusively must use the InternetOpenUrl function because CERN proxies do not support FTP.<!--QuoteEnd--></td></tr></table><div class='postcolor'><!--QuoteEEnd--><br><a href='http://shu.ru/tech/wininet/ftp-1.htm#wininet_ftp' target='_blank'>http://shu.ru/tech/wininet/ftp-1.htm#wininet_ftp</a><br><br>я бы сделал на php или cgi работу с ftp, а потом уже конектился бы через прокси, с аутентификацией к скрипту. ]]></description>
        <author>P.O.D</author>
        <category>Delphi: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265352</guid>
        <pubDate>Wed, 17 Dec 2003 16:15:59 +0000</pubDate>
        <title>WinInet (Документация, исходники, и.т.)</title>
        <link>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265352</link>
        <description><![CDATA[Zvik:  Попробую объяснить , что бы мне хотелось... Есть фтп сервер , когда в ИЕ набираю его юрл, автоматически выскакивает окошко аутентификации прокси... ввожу логин и пароль, после этого загружается этот юрл и я могу закачивать с него . Теперь тоже самое хочу сделать в программе при помощи wininet. В http сессии получается <br>//....<br>resend:<br> HttpSendRequest (hResourceHandle,<br>                        nil,<br>                        0,<br>                        nil,<br>                        0);<br> lpdwIndex:=0;<br> HttpQueryInfo (hResourceHandle,<br>                        HTTP_QUERY_FLAG_NUMBER or HTTP_QUERY_STATUS_CODE,<br>                        @dwstatus,<br>                        dwStatusSize,<br>                        lpdwIndex);<br><br>case dwStatus of<br> HTTP_STATUS_PROXY_AUTH_REQ :<br>        Begin<br>        InternetSetOption(hResourceHandle,<br>                                INTERNET_OPTION_PROXY_USERNAME,<br>                                @strusername,<br>                                StrLen(@strusername)+1);<br>        InternetSetOption(hResourceHandle,<br>                                INTERNET_OPTION_PROXY_PASSWORD,<br>                                @strpassword,<br>                                StrLen(@strpassword)+1);<br>        goto resend;<br>        exit;<br>        End;<br> HTTP_STATUS_DENIED :<br>        Begin<br>        InternetSetOption(hResourceHandle,<br>                                INTERNET_OPTION_USERNAME,<br>                                @strusername,<br>                                StrLen(@strusername)+1);<br>        InternetSetOption(hResourceHandle,<br>                                INTERNET_OPTION_PASSWORD,<br>                                @strpassword,<br>                                StrLen(@strpassword)+1);<br>        goto resend;<br><br>        End;<br><br>end;{case}<br>//.... <br>Как сделать через фтп что-то похожее???  Или это невозможно <!--emo&:blink:--><img src='http://forum.sources.ru/html/emoticons/blink.gif' border='0' style='vertical-align:middle' alt='blink.gif' /><!--endemo-->  ]]></description>
        <author>Zvik</author>
        <category>Delphi: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265122</guid>
        <pubDate>Wed, 17 Dec 2003 12:15:44 +0000</pubDate>
        <title>WinInet (Документация, исходники, и.т.)</title>
        <link>https://forum.sources.ru/index.php?showtopic=40858&amp;view=findpost&amp;p=265122</link>
        <description><![CDATA[Zvik:  Уважаемые господа. Помогите разобраться с wininet. Меня интересует русская документация, исходники на Делфях, полезные ссылки. Больше всего сейчас интересует работа по фтп через проксю с аутентификацией. Заранее спасибо&#33;  ]]></description>
        <author>Zvik</author>
        <category>Delphi: Сетевое программирование</category>
      </item>
	
      </channel>
      </rss>
	