Search found 138 matches: msxml2

Return to advanced search

Re: HTML code in a TPanel class

... arrived in the application. I had to give up because I always had problems in the various operating systems that the famous CreateObject( "MSXML2.DOMDocument" ) and CreateObject( "MSXML2.XMLHTTP" ) protocols did not work. give me erros as Error description: (DOS Error -2147352567) ...
by Silvio.Falconi
Mon Jan 22, 2024 8:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML code in a TPanel class
Replies: 9
Views: 1358

Re: Soap Web Service - timeout request

Darrell intenta con 'MSXML2.ServerXMLHTTP' que tiene el metodo setTimeouts(lResolve, lConnect, lSend, lReceive) 'MSXML2.XMLHTTP' es distinto de 'MSXML2.ServerXMLHTTP' Yo lo uso asi oHttp := CreateObject( 'MSXML2.ServerXMLHTTP' )oHttp:setTimeouts( ...
by RSalazarU
Thu Jan 11, 2024 6:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 705

Soap Web Service - timeout request

... timeout request for a web service request? I added to IF oHttp:status=200 to check status but sometimes request hangs. TRY oHttp := CreateObject( 'MSXML2.XMLHTTP' ) CATCH oHttp := CreateObject( 'Microsoft.XMLHTTP' ) END cHttpSend := [<?xml version="1.0"?>] cHttpSend += [<soapenv:Envelope ...
by cdmmaui
Mon Jan 08, 2024 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 705

Subuir un fichero a un servidor

... encuentro nada. Este es el codigo que utilizo: ... cUrl := "url..." cFile := "X:\PDFS\FICHERO.PDF" xDoc := CreateObject( "MSXML2.DOMDocument" ) ohttp := CreateObject( "MSXML2.XMLHTTP" ) ohttp:Open( "POST" , cUrl, .f.) oHttp:SetRequestHeader("Content-Type" ...
by miarcod
Sun Nov 26, 2023 11:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Subuir un fichero a un servidor
Replies: 18
Views: 2289

XML, CON ARCHIVO ADJUNTO PDF

... trae una marca donde empieza el PDF y Finaliza,, estas son %PDF-1.4 dfhaskfhhuiahakjabv,cxzngiajfmknvjsfjgsdlnl %%EOF TRY oHttp := CreateObject( 'MSXML2.XMLHTTP.6.0' ) CATCH oHttp := CreateObject( 'Microsoft.XMLHTTP' ) END doc = CreateObject("MSXML2.DOMDocument.6.0") oHttp:Open( "POST" ...
by elmoiquique
Thu Sep 28, 2023 10:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML, CON ARCHIVO ADJUNTO PDF
Replies: 35
Views: 2294

Re: Petición POST webview

Leandro:
Puedes tambien enviar mediante el objet Createobject("MSXML2.ServerXMLHTTP") y luego leer por get la informacion deseada, pero ahi tienes que tener el control del servidor web y de tu aplicacion, pero creo por lo que lei antes que ese es tu caso
by cmsoft
Mon Aug 14, 2023 4:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Petición POST webview
Replies: 7
Views: 338

phpBB Login Script using "MSXML2.ServerXMLHTTP" ?

hi,

my phpBB Forum "Reader" use "MSXML2.ServerXMLHTTP" to download Message of phpBB Forum

now there are some Forum where i need to login ( to get a Session-ID ? ) but how :?:
can somebody help me please
by Jimmy
Sat Jun 24, 2023 9:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB Login Script using "MSXML2.ServerXMLHTTP" ?
Replies: 0
Views: 133

Re: Usando webservice de un tercero

Con MSXML2.XMLHTTP podrías tranquilamente Te dejo un ejemplo por si te sirve STATIC oOleFUNCTION VerXml(cdesde)LOCAL oError, aRecordLOCAL aResp, cToken , lHuboErroes := .f., aErrores := {}LOCAL cJson,cContentType:="application/json",cAuthorization:=""Try  ...
by cmsoft
Tue Jun 06, 2023 11:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Usando webservice de un tercero
Replies: 4
Views: 416

Usando webservice de un tercero

... Antes me he conectado por SOAP sin problemas y leo algunos datos desde otra webservice, pero esta vez quede en duda si usar CreateObject( "MSXML2.XMLHTTP" ) o CURL Si alguien tiene un ejemplo o lineamiento para seguir se lo agradeceria Saludos
by Adolfo
Tue Jun 06, 2023 10:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Usando webservice de un tercero
Replies: 4
Views: 416

Re: MSXML2.ServerXMLHTTP / readyState / Status

hi,
karinha wrote:
Code: Select all  Expand view

   x1 := hb_jsonDecode( oServerWS:responseText, @aArray )
 

thx for Sample CODE

i think i will make a Fivewin Version of my phpBB Forum Reader
by Jimmy
Sat Mar 18, 2023 2:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 390

Re: MSXML2.ServerXMLHTTP / readyState / Status

... I Like )      Try         Try            oServerWS := CreateObject( 'MSXML2.XMLHTTP' )         Catch            oServerWS := CreateObject( 'Microsoft.XMLHTTP' ...
by karinha
Sat Mar 18, 2023 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 390

Re: MSXML2.ServerXMLHTTP / readyState / Status

hi, Do you want to receive data exactly by HTTP request or are they visible on the page and are they through DOM ? no, it is "very simple" just "GET" hole HTML e.g. from this Message, and find "Marker" to "extract" Text i´m a Internet Technique Dummy ... i onc...
by Jimmy
Sat Mar 18, 2023 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 390

Re: MSXML2.ServerXMLHTTP / readyState / Status

Do you want to receive data exactly by HTTP request or are they visible on the page and are they through DOM ?
by Natter
Sat Mar 18, 2023 11:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 390

Re: MSXML2.ServerXMLHTTP / readyState / Status

... i do not "render" anything, just "GET" Website and "extract" Information to fill local DBF --- i have search for MSXML2.ServerXMLHTTP and readyState / Status https://learn.microsoft.com/en-us/previous-versions/windows/desktop/ms761388(v=vs.85) readyState ...
by Jimmy
Sat Mar 18, 2023 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 390

Re: MSXML2.ServerXMLHTTP / readyState / Status

Have you tried using WebView ?
by Natter
Sat Mar 18, 2023 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 390
Next

Return to advanced search