Search found 18 matches: inetconnect

Return to advanced search

Re: c++ STRUCTURE data types

... AS LPSTR ENDSTRUCT oCredentials:dwSize = oCredentials:SizeOf() oCredentials:lpszCertStore = cCertStore oCredentials:lpszCertName = cCertName INetConnect( ..., ..., ..., ..., ..., @oCredentials:cBuffer ) ... DLL32 FUNCTION InetConnect( lpszHostName AS LPSTR, ; nPort AS _INT, ; nProtocol AS ...
by Antonio Linares
Wed Jul 18, 2018 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: c++ STRUCTURE data types
Replies: 3
Views: 699

c++ STRUCTURE data types

I need to call a 64-bit dll with the following parms: c++ call: SOCKET WINAPI InetConnect( LPCTSTR lpszHostName, UINT nPort, UINT nProtocol, UINT nTimeout, DWORD dwOptions, LPSECURITYCREDENTIALS lpCredentials ); The LPSECURITYCREDENTIALS data type is a user defined ...
by don lowenstein
Tue Jul 17, 2018 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: c++ STRUCTURE data types
Replies: 3
Views: 699

Re: FTP with Harbour / MSVC / FWH issues

... , how use ftp over TLS ? hLib = LOADLIBRARY( "wininet.dll" ) hInternet := INETOPEN( "Anystring", 1, 0, 0, 0 ) hConnect := INETCONNECT( hInternet, "www.xtech.com.cn",21, "xxx@xtech.com.cn", "erp6.5", 1, 0,0 ) if !EMPTY( hInternet ).and.!EMPTY( ...
by ShumingWang
Wed Jun 27, 2018 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP with Harbour / MSVC / FWH issues
Replies: 8
Views: 2232

Re: Migrando de xHarbour a Harbour

Por partes, como el tio Jack, sólo las que conozco de memoria: Error: Unresolved external '_HB_FUN_HB_UNZIPFILEREAD' referenced from D:\XBASE\FWH1701\LIB\FIVEH.LIB|OLEFUNCS Error: Unresolved external '_HB_FUN_HB_UNZIPFILECLOSE' referenced from D:\XBASE\FWH1701\LIB\FIVEH.LIB|OLEFUNCS Error: Unresolve...
by hmpaquito
Mon Feb 20, 2017 8:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrando de xHarbour a Harbour
Replies: 6
Views: 3633

Migrando de xHarbour a Harbour

Hola a todos nuevemente, deseando que tengan un feliz domingo. Gracias a la y amabilidad, alto espítitu de colaboración y disposición del maestro Antonio Linares de ayudar a todos los que nos mantemos dentro de la linea de FW, pude comprar mi licencia de FW17. El problema es que en mi país es muy di...
by JoseAlvarez
Sun Feb 19, 2017 3:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrando de xHarbour a Harbour
Replies: 6
Views: 3633

TipClient Windows 7 Lentidão Method Open (Solucionado)

Amigos,

em um cliente(windows7) esta ocorrendo demora de uns 12 segundos no METHOD open() do TIPCLIENTHTTP:

METHOD Open( cUrl ) CLASS TIPClient
...
//A demora esta aqui:
::inetConnect( ::oUrl:cServer, nPort, ::SocketCon )
...
RETURN .T.

Alguem sabe o que pode estar acontecendo?

att.
by MGA
Tue Apr 19, 2016 9:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TipClient Windows 7 Lentidão Method Open (Solucionado)
Replies: 2
Views: 548

Re: DIREFENCIA ENTRE HARBOUR/XHARBOUR

... of this document; see more in doc/thread.txt and doc/xhbt_internals.txt Portable Sockets Support: ------------------------- LOCAL Socket Socket := InetConnect( "www.host.com", nPort ) Socket := InetSend( "Hello from me" ) InetClsoe( Socket ) The full description is beyond the ...
by Antonio Linares
Sun Jul 12, 2015 9:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIREFENCIA ENTRE HARBOUR/XHARBOUR
Replies: 4
Views: 2282

Re: Harbour-32.dll

HB_FUN_HB_CODEPAGE_HR646 @367 HB_FUN_HB_CODEPAGE_HR852 @368 HB_FUN_HB_CODEPAGE_HRISO @369 HB_FUN_HB_CODEPAGE_HRWIN @370 HB_FUN_HB_CODEPAGE_HU852 @371 HB_FUN_HB_CODEPAGE_HU852C @372 HB_FUN_HB_CODEPAGE_HUISO @373 HB_FUN_HB_CODEPAGE_HUWIN @374 HB_FUN_HB_CODEPAGE_IS850 @375 HB_FUN_HB_CODEPAGE_IS861 @376...
by pgfdz
Fri May 29, 2015 8:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Harbour-32.dll
Replies: 5
Views: 2359

Re: Migrando de FWH 32 a FWH 64 - windows.h

... las funciones nativas de Harbour / xHarbour la forma de saber si hay conexión a Internet: PROCEDURE Main LOCAL pSocket INetInit() pSocket := INetConnect( "www.xharbour.com", 80 ) ? INetAddress( pSocket ) // result: 193.239.210.10 INetClose( pSocket ) INetCleanUp() RETURN Espero ...
by lucasdebeltran
Tue Jan 06, 2015 10:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrando de FWH 32 a FWH 64 - windows.h
Replies: 79
Views: 19117

Re: Escuchar comunicaciones por puerto IP.

... is recommended to place one call to inetInit() at the begin of a program that uses sockets. After the sockets subsystem is initialized, function inetConnect() or inetAccept() can be called to establish a sockets connection. Note: call function inetCleanup() to release memory resources for the ...
by JmGarcia
Mon Apr 14, 2014 9:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Escuchar comunicaciones por puerto IP.
Replies: 2
Views: 940

Flickr API, upload file with POST Method

Good evening, I want to make a small app to upload pictures to Flickr. There are some around, but I want to give special TAGs to each picture and to organize pictures in different "Collections" in 5 different levels. I need to make a POST for a "file" to the Flickr URL. Any one c...
by alvaro533
Mon May 20, 2013 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Flickr API, upload file with POST Method
Replies: 2
Views: 647

Flickr API, upload file with POST Method

Buenas tardes, Quiero hacer un pequeño programa para subir fotos a Flickr. Sé que hay muchos por la red, pero quiero poner unos TAG, especiales y un arbol de carpetas y subcarpetas especial. El caso es que necesito hacer un POST de un fichero a la url de flickr. ¿Alguíen tiene algún ejemplo de cómo ...
by alvaro533
Mon May 20, 2013 11:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Flickr API, upload file with POST Method
Replies: 1
Views: 490

Re: Servidores de correo para hb_sendmail

... si pudo mandar correctamente el correo... el log que crea es, pero no entiendo cual es el error que cometo. Muchas gracias! 20111214-11:55:37 :INETCONNECT( smtp.live.com, 25 ) >> AC8888 << 20111214-11:55:37 :INETERRORCODE( AC8888 ) >> 0 << 20111214-11:55:37 :INETSENDALL( ...
by TOTOVIOTTI
Thu Dec 15, 2011 7:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Servidores de correo para hb_sendmail
Replies: 3
Views: 919

Re: Download internet file without interference

Antonio,

hbpcre.lib fixed my problem, however now getting:

HB_FUN_INETINIT'
HB_FUN_INETCONNECT
HB_FUN_INETERRORCODE
HB_FUN_INETERRORDESC

I have hbtip.lib linking in.
I thought hbtip.lib had these functions?

Thanks
by Dave Zowasky
Sun May 03, 2009 1:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Download internet file without interference
Replies: 31
Views: 8600

Upload files via FTP

... LOCAL hInternet, hConnect hLib = LOADLIB32( "wininet.dll" ) hInternet = INETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) hConnect = INETCONNECT( hInternet, "ftp address", INTERNET_INVALID_PORT_NUMBER, "userid", "password", INTERNET_SERVICE_FTP, 0, 0 ) ? FTPGETFILE( hConnect, "remote ...
by Romeo
Fri Sep 19, 2008 4:56 pm
 
Forum: All products support
Topic: Upload files via FTP
Replies: 3
Views: 1414
Next

Return to advanced search