Search found 41 matches: internetconnect

Return to advanced search

FTP with Harbour / MSVC / FWH issues

... do FTP processes. It works perfectly. I am using the .dll WININET and calling the functions: INTERNETOPEN INETCLOSEHANDLE FTPGETFILE FTPPUTFILE INTERNETCONNECT However, when I build using Harbour / MSVC / FWH, it appears to not recognize the WININET.dll because it gives me unidentified externals ...
by TimStone
Tue Jun 19, 2018 11:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP with Harbour / MSVC / FWH issues
Replies: 8
Views: 2253

Re: OT. ¿ Que bloquea mi Ftp ? (SOLUCIONADO)

Félix, Finalmente he encontrado la solucion al problema. El getlasterror() de la llamada a InternetConnect() me marcaba 12603. Con ese numero llegué a http://www.prestosoft.com/fvc_faq.asp#5 y esta buena gente ya lo explica todo: Apagar en internet explorer ...
by hmpaquito
Thu Nov 19, 2015 8:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: OT. ¿ Que bloquea mi Ftp ? (SOLUCIONADO)
Replies: 14
Views: 1347

Re: Tftp - Directory no retorna la hora - Funciona a Medias

... default cMask := "*.*" hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) hConnect = INTERNETCONNECT( hInternet, cIP, INTERNET_INVALID_PORT_NUMBER, cUser, cPass, INTERNET_SERVICE_FTP, 0, 0 ) if hConnect != nil clastFileinDir:=FTPLASTFILEINDIR(hConnect, ...
by Verhoven
Mon Jun 24, 2013 5:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tftp - Directory no retorna la hora - Funciona a Medias
Replies: 5
Views: 1434

Re: moving to MSVC 32 bits

Lucas, These functions are duplicated in ftp.prg or ftp.c. There is no ftp.* in FWH neither in Harbour, unless I miss something: fiveh32.lib(WININET.obj) : warning LNK4006: _HB_FUN_INTERNETOPEN ya se definió en ftp.obj; segunda definición omitida fiveh32.lib(WININET.obj) : warning LNK4006: _HB_FUN_I...
by Antonio Linares
Sun Mar 03, 2013 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: moving to MSVC 32 bits
Replies: 44
Views: 8234

Como tomar fecha y hora de un archivo en un FTP??

... carpeta del servidor FTP Estoy haciendo esto: hInternet :=INTERNETOPEN( "CualquierCosa", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) hConnect :=INTERNETCONNECT( hInternet, cFTP_url, INTERNET_INVALID_PORT_NUMBER, cFTP_Usr, cFTP_Clv, INTERNET_SERVICE_FTP, 0, 0 ) lFTPError :=.f. do while ( .not. ...
by gsabattino
Sun May 06, 2012 5:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como tomar fecha y hora de un archivo en un FTP??
Replies: 1
Views: 1045

Re: Cliente FTP con FW+xH

... hWinINet < 0 .or. hWinINet >= 32 hInternet := InternetOpen( "Valdenebro", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) endif hConnect := INTERNETCONNECT( hInternet, cFtpAddress, nPort, cUser, cPass, nService, 0, 0 ) IF hconnect == 0 ALERT ("ERROR EN CONEXION.",,"Descarga","X",,.t.) ...
by Manuel Valdenebro
Sun Jan 29, 2012 12:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cliente FTP con FW+xH
Replies: 8
Views: 3004

Re: ayuda como subir archivo via ftp

... < 0 .or. hWinINet >= 32       hInternet := InternetOpen( "ftp", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 )    endif    hConnect := INTERNETCONNECT( hInternet, cFtpAddress, 21, cUser, cPass, 1, 0, 0 )    IF hconnect == 0       alert ("ERROR EN CONEXION.")    ELSE       ...
by Manuel Valdenebro
Fri Dec 09, 2011 3:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda como subir archivo via ftp
Replies: 3
Views: 1034

Re: No puedo acceder a mi FTP

... 443 // " " HTTPS " #define INTERNET_DEFAULT_SOCKS_PORT 1080 // default for SOCKS firewall servers. // // service types for InternetConnect() // #define INTERNET_SERVICE_FTP 1 #define INTERNET_SERVICE_GOPHER 2 #define INTERNET_SERVICE_HTTP 3 // // flags for FTP // #define ...
by mgsoft
Wed Aug 03, 2011 1:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: No puedo acceder a mi FTP
Replies: 4
Views: 989

Re: Autenticacion user/password en una web

... En ambos casos, antes de realizar una petición (request), se realizan dos pasos obligatorios: 1) InternetOpen 2) InternetConnect En la funcion InternetOpen es donde se incluye el usuario y la password. Tu estás accediendo a través de un atajo por OLE. Desconozco ...
by Manuel Valdenebro
Mon Jun 14, 2010 4:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Autenticacion user/password en una web
Replies: 8
Views: 2637

Re: Pritpal, HBIDE developer, assists us to use it with FWH

Hi Antonio Here is the stripped down list, for clarity purpose the irrelevant entries are removed. ---------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------...
by Pritpal Bedi
Mon Jun 07, 2010 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 99901

Re: Ayuda Por Favor

... hInternet y hConnection: hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) MsgInfo( hInternet ) hConnect = INTERNETCONNECT( hInternet, "Your ftp address", INTERNET_INVALID_PORT_NUMBER, "userid", "password", INTERNET_SERVICE_FTP, ...
by Antonio Linares
Thu Jan 28, 2010 5:58 pm
 
Forum: FiveWin para Pocket PC
Topic: Ayuda Por Favor
Replies: 6
Views: 1650

Re: Ayuda Por Favor

... 443 // " " HTTPS " #define INTERNET_DEFAULT_SOCKS_PORT 1080 // default for SOCKS firewall servers. // // service types for InternetConnect() // #define INTERNET_SERVICE_FTP 1 #define INTERNET_SERVICE_GOPHER 2 #define INTERNET_SERVICE_HTTP 3 // // flags for FTP // #define ...
by Julio Perez
Thu Jan 28, 2010 3:33 pm
 
Forum: FiveWin para Pocket PC
Topic: Ayuda Por Favor
Replies: 6
Views: 1650

Re: Otra de FTP

... String * 14 End Type Private Declare Function InternetCloseHandle Lib "wininet" (ByRef hInet As Long) As Long Private Declare Function InternetConnect Lib "wininet.dll" Alias "InternetConnectA" (ByVal hInternetSession As Long, ByVal sServerName As String, ByVal nServerPort ...
by QAZWSX2K
Tue Oct 06, 2009 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Otra de FTP
Replies: 14
Views: 3732

Re: FTP Again

... 443 // " " HTTPS " #define INTERNET_DEFAULT_SOCKS_PORT 1080 // default for SOCKS firewall servers. // // service types for InternetConnect() // #define INTERNET_SERVICE_FTP 1 #define INTERNET_SERVICE_GOPHER 2 #define INTERNET_SERVICE_HTTP 3 #define INTERNET_FLAG_PASSIVE ...
by Colin Haig
Sun Jul 12, 2009 1:08 am
 
Forum: FiveWin for Pocket PC
Topic: FTP Again
Replies: 8
Views: 2123

FTP Again

... hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) if hInternet == 0 MsgInfo('No Internet') endif hConnect = INTERNETCONNECT( hInternet,"99.9.9.99",INTERNET_DEFAULT_FTP_PORT, "user", "pass", INTERNET_SERVICE_FTP,0, 0 ) IF HConnect ...
by Colin Haig
Thu Jul 09, 2009 9:35 am
 
Forum: FiveWin for Pocket PC
Topic: FTP Again
Replies: 8
Views: 2123
Next

Return to advanced search