Search found 126 matches: turl

Return to advanced search

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

Con version trabaja este ejemplo ?

All versions from 1701 onwards. (from year 2017 onwards)
by nageswaragunupudi
Wed Jan 10, 2024 5:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

This is a short code: #include "fivewin.ch"function Main()   local cText, cCur   local aRates   := {}   cText    := WebPageContents( "https://www.bcv.org.ve/" )   for each cCur in { "EUR", "CNY", "TRY", "RUB"...
by CARLOS ATUNCAR
Tue Jan 09, 2024 6:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

Saludos, Estoy experimentado el siguiente codigo, y no me genera incidencia, esto sucede mayormente 8am, local cuando los comercios estan leyendo el valor del U$S.     oHttp:Open("GET","https://www.bcv.org.ve",.f.)    oHttp:SetTimeouts(0, 60000, 30...
by jnavas
Fri Jan 05, 2024 3:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

Saludos y agradecidos por su aporte, a continuación el codigo que me funcionado, sin embargo aleatoriamente genera incidencia, considero que la página tiene alto tráfico debido a que es utilizada en venezuela por la actividad comercial debido a que nuestra economia esta dolarizada. Error WinHttp.Win...
by jnavas
Fri Jan 05, 2024 1:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

Saludos y agradecido por su apoyo,
Estaré experimentando esta implementación en el usuario donde no se puede ejecutar la pagina web.
by jnavas
Fri Sep 29, 2023 4:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

Excelent!! Mr Rao

Everyday you learn something new :D
by acuellar
Thu Sep 28, 2023 1:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

This is a short code: #include "fivewin.ch"function Main()   local cText, cCur   local aRates   := {}   cText    := WebPageContents( "https://www.bcv.org.ve/" )   for each cCur in { "EUR&qu...
by nageswaragunupudi
Thu Sep 28, 2023 8:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

y si pruebas de otro modo?   Try      oHttp := CreateObject("winhttp.winhttprequest.5.1")      oHttp:Open("GET","https://www.bcv.org.ve",.f.)      oHttp:Send()      cResp := oHttp:ResponseText()   Catch      MsgStop( "Error"...
by nageswaragunupudi
Thu Sep 28, 2023 8:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

Esta funcionalidad funciona (lectura del valor del Dólar en el BCV) en diversos usuarios en otras plataformas (redes), en un usuario específico devuelve NOCONNET, agradecemos sugerencias para resolver esta incidencia.

Could be internet problem with that client.
by nageswaragunupudi
Thu Sep 28, 2023 8:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

y si pruebas de otro modo?   Try      oHttp := CreateObject("winhttp.winhttprequest.5.1")      oHttp:Open("GET","https://www.bcv.org.ve",.f.)      oHttp:Send()      cResp := oHttp:R...
by sysctrl2
Wed Sep 27, 2023 11:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

El antivirus puede ser? :roll:
by sysctrl2
Wed Sep 27, 2023 11:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1486

Re: xHarbour.org updated!

... Very strange, please tell me what message is returned in this code: #include "Fivewin.ch" FUNCTION MAIN() LOCAL oUrl, oCli oUrl = TUrl():New( "https://apis.averbeporto.com.br/php/conn.php" ) oCli = TIPClientHttp():New( oUrl ) ? oCli:Open() RETURN NIL .F. -> false. ...
by wartiaga
Thu Sep 21, 2023 12:14 am
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37347

Re: xHarbour.org updated!

... Very strange, please tell me what message is returned in this code: #include "Fivewin.ch" FUNCTION MAIN() LOCAL oUrl, oCli oUrl = TUrl():New( "https://apis.averbeporto.com.br/php/conn.php" ) oCli = TIPClientHttp():New( oUrl ) ? oCli:Open() RETURN NIL .F. -> false. ...
by karinha
Wed Sep 20, 2023 7:53 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37347

Re: xHarbour.org updated!

... Very strange, please tell me what message is returned in this code: #include "Fivewin.ch" FUNCTION MAIN() LOCAL oUrl, oCli oUrl = TUrl():New( "https://apis.averbeporto.com.br/php/conn.php" ) oCli = TIPClientHttp():New( oUrl ) ? oCli:Open() RETURN NIL
by wartiaga
Wed Sep 20, 2023 7:32 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37347
Next

Return to advanced search