Search found 27 matches: readall

Return to advanced search

Re: xHarbour.org updated!

... (compatible; MSIE 6.0; Windows NT 5.0)' IF !oCli:PostMultiPart(hQuery) CurSorArrow() MsgInfo(oCli:lastErrorMessage,'Error') ELSE cNFSeResp := oCli:ReadAll() RespC := oCli:GetCookies() // Get cookie ENDIF oCli:Close() ENDIF ENDIF ENDIF msginfo(cNFSeResp) msginfo(RespC) Return Nil
by wartiaga
Tue Sep 19, 2023 7:57 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37596

Re: xHarbour.org updated!

... (compatible; MSIE 6.0; Windows NT 5.0)' IF !oCli:PostMultiPart(hQuery) CurSorArrow() MsgInfo(oCli:lastErrorMessage,'Error') ELSE cNFSeResp := oCli:ReadAll() RespC := oCli:GetCookies() // Get cookie ENDIF oCli:Close() ENDIF ENDIF ENDIF msginfo(cNFSeResp) msginfo(RespC) Return Nil
by wartiaga
Tue Sep 19, 2023 12:16 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37596

Re: xHarbour.org updated!

... (compatible; Indy Library)' IF !oCli:PostMultiPart(hQuery) CurSorArrow() MsgInfo(oCli:lastErrorMessage,'Erro') ELSE cNFSeResp := oCli:ReadAll() RespC := oCli:GetCookies() // Captura cookie ENDIF oCli:Close() ENDIF ENDIF ENDIF
by wartiaga
Tue Sep 19, 2023 2:25 am
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37596

hbcurl xharbour

... (compatible; Indy Library)' IF !oCli:PostMultiPart(hQuery) CurSorArrow() MsgInfo(oCli:lastErrorMessage,'Erro') ELSE cNFSeResp :=oCli:ReadAll() RespC := oCli:GetCookies() // Captura cookie ENDIF //oCli:Close() ENDIF ENDIF ENDIF If Alltrim(cNFSeResp) == '{"success":1,"logout":1}' ...
by wartiaga
Tue Jul 18, 2023 6:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hbcurl xharbour
Replies: 1
Views: 221

TLS 1.2 doubt

... (compatible; Indy Library)' IF !oCli:PostMultiPart(hQuery) CurSorArrow() MsgInfo(oCli:lastErrorMessage,'Erro') ELSE cNFSeResp :=oCli:ReadAll() RespC := oCli:GetCookies() // Captura cookie ENDIF //oCli:Close() ENDIF ENDIF ENDIF I received the news that they will only accept TLS 1.2 ...
by wartiaga
Thu Jul 13, 2023 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TLS 1.2 doubt
Replies: 7
Views: 364

TIPCLIENTHTTP problem ( new )

... => TIPCLIENTHTTP:NEW( 96 ) Opening the object is followed by creating an XML document, and then: oHttp:open() oHttp:Post( cXml) cRet := oHttp:readAll( ) oHttp:close() Looking this up on the Forum yielded a post showing that the harbour library has been "problematic" and unfixed for ...
by TimStone
Wed Oct 30, 2019 7:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TIPCLIENTHTTP problem ( new )
Replies: 7
Views: 1309

Acceder a MariaDB

... RETURN ENDIF IF ! oHttp:post( hQuery ) ? "Error: oHttp:post(): " + oHttp:lastErrorMessage() ENDIF cResponse := oHttp:readAll() oHttp:close() Alert( cResponse ) RETURN Alguien que pueda orientarme??? Si hay que montar un webservice, o el Servidor MariaDB??? Cómo montar ...
by Xevi
Wed Nov 29, 2017 8:58 pm
 
Forum: FiveTouch
Topic: Acceder a MariaDB
Replies: 3
Views: 1340

Re: Creating an XML file

... submit it: IF .NOT. oHttp:open() MsgAlert( "Connection error:", oHttp:lastErrorMessage( ) ) RETURN ENDIF oHttp:Post( cXml) cRet := oHttp:readAll( ) oHttp:close() The value cRet can then be parsed, or written to a file. At least, it works fine for me this way but may vary depending on ...
by TimStone
Thu Jul 27, 2017 2:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating an XML file
Replies: 9
Views: 1935

Re: Sample code

... to one Button? Can I launch an url? oCli := TIPClientHttp():New( "http://192.168.1.100/mobile/myasp.asp?Code="+code ) cRet := oCli:ReadAll() It would be very nice Bye
by MarcoBoschi
Thu Nov 17, 2016 1:04 pm
 
Forum: FiveTouch
Topic: Sample code
Replies: 13
Views: 7898

tIpClientHttp bug

Hi all, I noted a problem downloading a text file through tipclienthttp oHttp:Readall: it is a 200 rows text file and some rows contains spur characters but only on Windows XP,Vista, 7, all is right on Windows 8/10. Is there something wrong on my code or do I have ...
by Marco Turco
Thu Nov 03, 2016 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tIpClientHttp bug
Replies: 2
Views: 699

Re: Tip Client = Harbour / MSVC 2015 Error

... ) IF .NOT. oHttp:open() MsgAlert( "Connection error:", oHttp:lastErrorMessage( ) ) RETURN ENDIF oHttp:Post( cXml) cRet := oHttp:readAll( ) oHttp:close() RETURN NIL
by Antonio Linares
Mon Apr 25, 2016 8:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tip Client = Harbour / MSVC 2015 Error
Replies: 39
Views: 8732

Re: Duda HBQT + Harbour

... := TIPClientHTTP():new( "http://www.televideo.rai.it/televideo/pub/tt4web/Nazionale/16_9_page-101.png" ) oHttp:open() cString := oHttp:readAll() oHttp:close() hb_MemoWrit( "televideo.png", cString ) oWnd := QMainWindow() oWnd:SetFixedSize( 700, 500 ) oWnd:setStyleSheet( " ...
by jnavas
Fri Jun 05, 2015 4:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda HBQT + Harbour
Replies: 8
Views: 1458

Re: Duda HBQT + Harbour

... := TIPClientHTTP():new( "http://www.televideo.rai.it/televideo/pub/tt4web/Nazionale/16_9_page-101.png" ) oHttp:open() cString := oHttp:readAll() oHttp:close() hb_MemoWrit( "televideo.png", cString ) oWnd := QMainWindow() oWnd:SetFixedSize( 700, 500 ) oWnd:setStyleSheet( " ...
by jnavas
Fri Jun 05, 2015 4:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda HBQT + Harbour
Replies: 8
Views: 1458

Re: Duda HBQT + Harbour

... := TIPClientHTTP():new( "http://www.televideo.rai.it/televideo/pub/tt4web/Nazionale/16_9_page-101.png" ) oHttp:open() cString := oHttp:readAll() oHttp:close() hb_MemoWrit( "televideo.png", cString ) oWnd := QMainWindow() oWnd:SetFixedSize( 700, 500 ) oWnd:setStyleSheet( " ...
by jnavas
Fri Jun 05, 2015 4:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda HBQT + Harbour
Replies: 8
Views: 1458

json

Hi All I am working with an api for a accounting package - I can extract information from the accounting package if oHttp:open() cItems2 := oHttp:ReadAll() MEMOWRIT( "MYRESULT1.TXT", cItems2) this is what the text file shows { "UID": "17ef4d73-cfa7-43fb-afe6-5350cbffffa9", ...
by Colin Haig
Mon Aug 25, 2014 2:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: json
Replies: 3
Views: 799
Next

Return to advanced search