Search found 23 matches: passive

Return to advanced search

Re: FTP Upload works at home Not at work

Mark, mayby tracert can help you? Passive mode was a problem for me sometimes Best regards, Otto The tracert command is used to trace the route that network packets take from your computer to a destination IP address or domain name. It is ...
by Otto
Fri May 26, 2023 12:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP Upload works at home Not at work
Replies: 6
Views: 428

Re: Error FTP

Fixed and sent to your private email. Your ftp server doesn't allow active ftp mode. The sample now uses passive ftp mode: #define INTERNET_FLAG_PASSIVE 134217728hConnect = INTERNETCONNECT( hInternet, "ftp.fenatac.log.br", INTERNET_INVALID_PORT_NUMBER, "fenatac@fenatac.log.br", ...
by Enrico Maria Giordano
Tue Apr 04, 2023 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error FTP
Replies: 7
Views: 556

Re: FTPGETFILE no funciona con Windows 10 x64

Hola,

Haz la conexion FTP en "passive mode".
Para establecer passive mode hazlo asi

Code: Select all  Expand view
#Define lPASSIVE_MODE .T.
oFTP:=TFTP():New(ALLTRIM(aReader),oInternet,"anonymous","", lPASSIVE_MODE)


salu2
by hmpaquito
Mon May 09, 2022 2:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FTPGETFILE no funciona con Windows 10 x64
Replies: 8
Views: 567

Re: TFTP no reporta archivos para actualizacion de aplicacion

... la hicieron que dejara de funcionar y no mostrara los foros al entrar. A lo que vamos. Dos cosas: 1º Configura Ftp para que envie en modo pasivo: passive mode 2º Prueba a enviar desactivando temporalmente el cortafuegos. Salu2
by paquitohm
Fri Jan 14, 2022 10:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TFTP no reporta archivos para actualizacion de aplicacion
Replies: 4
Views: 450

Re: Fatturazione Elettronica 1 ottobre 2020

... leggendo la documentazione della versione 1.6.1 vedo che ci sono due formati 1 - fattura ordinaria 2 - fattura semplificata leggendo le fatture passive devo preoccuparmi se una fattura sia con formato 1 o 2 o è trasparente? Mi spiego meglio: come faccio a riconoscere se una fattura sia ordinaria ...
by MarcoBoschi
Mon Sep 28, 2020 8:38 am
 
Forum: All products support
Topic: Fatturazione Elettronica
Replies: 91
Views: 62700

Re: Fatturazione Elettronica

... <DescrizioneAttachment></DescrizioneAttachment> <Attachment></Attachment> </Allegati> Ho notato scaricando fatture passive che pochissimi lo fanno Volevo capire cosa fate voi e cosa ne pensate? Io personalmente inserisco il PDF e ho notato che le pochissime aziende ...
by MarcoBoschi
Mon Jul 01, 2019 12:08 pm
 
Forum: All products support
Topic: Fatturazione Elettronica
Replies: 91
Views: 62700

Re: Need CURL syntax with fivewin using HBCURL LIB?

Here it is: /* * libcurl 'easy' API - Harbour header. * * Copyright 2008 Viktor Szakats (vszakats.net/harbour) * originally based on: * Copyright 2005 Luiz Rafael Culik Guimaraes <luiz at xharbour.com.br> * * This program is free software; you can redistribute it and/or modify * it under the t...
by ADutheil
Tue Nov 01, 2016 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need CURL syntax with fivewin using HBCURL LIB?
Replies: 10
Views: 4614

Re: Descargando archivos via FTP

... dwFlags [in] Options specific to the service used. If dwService is INTERNET_SERVICE_FTP, INTERNET_FLAG_PASSIVE causes the application to use passive FTP semantics.
by Biel EA6DD
Thu Sep 01, 2016 8:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Descargando archivos via FTP
Replies: 5
Views: 1286

Re: Function to download a defined file from a homepage ?

... LOCAL cUpdFile := "BARTEST1.zip" // file LOCAL cLocalDir := "I:/DOWNLOADS/" // destination LOCAL nFlags := 0 // flag to set passive mode oUpdate := TUpdate():New( cFtp, cUser, cPW, cFtpDir, cUpdFile, cLocalDir +"Updates\" ) oUpdate:nFlags := nFlags oUpdate:Update() ...
by ukoenig
Thu Apr 21, 2016 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Function to download a defined file from a homepage ?
Replies: 31
Views: 15254

Re: FTP problem using tIpClientFTP

Solved, the CentOS server with ProFtpD require the PORT MODE ftp access instead of PASSIVE MODE as default and tIpClientFtp seems doesn't support PORT MODE. I changed the CentoOS config using modprobe ip_conntrack_ftp to activate the ProFtpD passive mode and the ...
by Marco Turco
Thu Jan 15, 2015 6:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP problem using tIpClientFTP
Replies: 6
Views: 1475

Re: WindowsXP hasta 2019

... update.inf.new copy update_SP2QFE.inf org_update_SP2QFE.inf /y copy new_update_SP2QFE.inf update_SP2QFE.inf /y echo Apply Update start update.exe /passive /norestart /log:c:\xpupdate\install.log ping -n 1 -w 5 1.1.1.1>nul copy org_update_SP2QFE.inf update_SP2QFE.inf /y 3. Copy update_SP2QFE.inf ...
by Antonio Linares
Mon May 26, 2014 7:40 pm
 
Forum: Off Topic / Otros temas
Topic: WindowsXP hasta 2019
Replies: 3
Views: 719

Re: New class TUpdate

... LOCAL cLocalDir := "c:\temp" LOCAL nFlags := "134217728"//<SpecialConnectionFlags> // use 134217728 to set passive mode oUpdate := TUpdate():New(cFtp, cUser, cPW, cFtpDir, cUpdFile, cLocalDir+"Updates\") oUpdate:nFlags := nFlags oUpdate:Update () ...
by Silvio.Falconi
Tue Jan 08, 2013 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New class TUpdate
Replies: 25
Views: 6957

Re: New class TUpdate

...            LOCAL cLocalDir := "NameOfTheLocalDir"             LOCAL nFlags := <SpecialConnectionFlags> // flag to set passive mode             oUpdate := TUpdate():New(cFtp, cUser, cPW, cFtpDir, cUpdFile, cLocalDir+"Updates\")             oUpdate:nFlags ...
by StefanHaupt
Thu Jan 03, 2013 10:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New class TUpdate
Replies: 25
Views: 6957

Re: Ftp doubt

Wanderson I have a same problem, the problem is "FTP Passive Mode", this mode not return list Yo tengo el mismo problema con algunos FTPs y es porque estos necesitan conectarse con "Passive mode" y este modo no retorna nada cuando ...
by Enrrique Vertiz
Wed May 02, 2012 6:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ftp doubt
Replies: 5
Views: 1160

Re: Otra de FTP

CHEQUEA ESTE LINK A VER SI TE SIRVE DE AYUDA http://www.freevbcode.com/ShowCode.asp?ID=1991 CONTENIDO SEGUN http://foro.elhacker.net/net/ayudasubir_archivos_por_ftp-t265864.0.html Const FTP_TRANSFER_TYPE_UNKNOWN = &H0 Const FTP_TRANSFER_TYPE_ASCII = &H1 Co...
by QAZWSX2K
Tue Oct 06, 2009 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Otra de FTP
Replies: 14
Views: 3708
Next

Return to advanced search