Search found 31 matches: domdocument

Return to advanced search

Re: HTML code in a TPanel class

... 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: 1919

Subuir un fichero a un servidor

... 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: 3858

XML, CON ARCHIVO ADJUNTO PDF

... %%EOF TRY oHttp := CreateObject( 'MSXML2.XMLHTTP.6.0' ) CATCH oHttp := CreateObject( 'Microsoft.XMLHTTP' ) END doc = CreateObject("MSXML2.DOMDocument.6.0") oHttp:Open( "POST" , ts_servidor , .F. ) oHttp:SetRequestHeader( "SOAPAction" , "token" ) oHttp:SetRequestHeader("Content-Type", ...
by elmoiquique
Thu Sep 28, 2023 10:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML, CON ARCHIVO ADJUNTO PDF
Replies: 40
Views: 6906

Web Services Security WSS OASIS

... </SOAP-ENV:Envelope> And follow the example prg trying to reach the same pattern. static procedure DOMElotech() local cXML, oDOMDocument, oXmldsig, oStore, oCertificados local nI, oCert, cSerialCert, oStoreMem cXML := '<?xml version="1.0" encoding="utf-8"?>' ...
by Francisco Valério
Mon Feb 20, 2023 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services Security WSS OASIS
Replies: 0
Views: 315

Re: Web Services

... dos años. el link es : https://www.apisperu.com/servicios/dniruc/ te registras y te dan tu token para ingresar. doc = CreateObject("MSXML2.DOMDocument") ohttp = CreateObject( "MSXML2.XMLHTTP" ) do case case len(xnruc)=11 ohttp:Open( "GET" ,"https://dniruc.apisperu.com/api/v1/ruc/&xnruc",.F.) ...
by Dioni
Sat May 22, 2021 6:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Web Services
Replies: 14
Views: 6347

error on createobject

function ReadMessage() local HData,cr local odoc := CreateObject( "MSXML2.DOMDocument" ) local ohttp := CreateObject( "MSXML2.XMLHTTP" ) local cTOKEN:="1206646388:AAEr-QL8hSYNAJ3dNx2k6w7u0nEAOWld2Po" local URL:="https://api.telegram.org/bot"+cTOKEN+"/getUpdates" ...
by Silvio.Falconi
Sat Jan 16, 2021 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error on createobject
Replies: 2
Views: 580

Re: Crear Archivo Json y Enviarlo vía POST

... ahashEncabezado["lImpuestos"] := mImpuestos cJson := hb_jsonEncode(ahashEncabezado,.T.) doc := CreateObject( "MSXML2.DOMDocument" ) ohttp := CreateObject("MSXML2.XMLHTTP" ) ohttp:Open( "POST" ," http://proveedor.com.co/api/facfacturas",.F.) ...
by russimicro
Mon Apr 22, 2019 10:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear Archivo Json y Enviarlo vía POST
Replies: 19
Views: 3633

Re: Error en archivo XML usando TXMLDocument

... los nombres de etiquetas con el atributo 'cName' y valor de la etiqueta con 'cData'. Ya he probado creando un objeto 'CreateObject("MSXML2.DOMDocument") y con LoadXML(cCadena) carga sin errores el archivo XML con punto en los nombre de etiqueta, ahora estoy buscando los métodos que ...
by gmart1
Thu Sep 06, 2018 5:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en archivo XML usando TXMLDocument SOLUCIONADO
Replies: 10
Views: 3402

Re: How to Save Json data to dbf?

... NEXO() LOCAL URL:="http://xxx.xxx.xxx.xxx/testing/distribuidora/webservice/api/obtenerProductos" LOCAL oDoc:=CreateObject("MSXML2.DOMDocument") LOCAL oHttp:=CreateObject("MSXML2.XMLHTTP"),cRespuesta,aProductos:="" oHttp:Open("GET",URL,.F.) oHttp:SetRequestHeader("Accept" ...
by TOTOVIOTTI
Tue Oct 11, 2016 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Save Json data to dbf? (Solved)
Replies: 8
Views: 1922

Re: Webservices

... Funciono perfecto mil gracias por tu ayuda... dejo el codigo funcionando.. #include "fivewin.ch" doc = CreateObject( "MSXML2.DOMDocument" ) ohttp = CreateObject( "MSXML2.XMLHTTP" ) ohttp:Open( "POST" ,"https://www.nubefact.com/api/beta/invoices",.F.) ...
by Dioni
Wed Jun 01, 2016 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webservices
Replies: 8
Views: 5615

Re: Webservices

... este es el ejemplo que estoy haciendo. pero no logro que estoy haciendo mal.. #include "fivewin.ch" doc = CreateObject( "MSXML2.DOMDocument" ) ohttp = CreateObject( "MSXML2.XMLHTTP" ) ohttp:Open( "POST" ,"https://www.nubefact.com/api/beta/invoices", ...
by Dioni
Sat May 28, 2016 5:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webservices
Replies: 8
Views: 5615

Webservices

... en la creacion del objeto Microsoft.XMLHTTP : ' + Ole2TxtError()) return .F. end END //.. Creo Objeto XML TRY oDoc := CreateObject( 'MSXML2.DOMDocument' ) CATCH try oDoc := CreateObject( 'MSXML2.DOMDocument' ) catch Alert('Error en la creacion del objeto MSXML2.DOMDocument : ' + Ole2TxtError()) ...
by mterraz
Tue Mar 29, 2016 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webservices
Replies: 8
Views: 5615

Crear Objetos en 16 bits

... CATCH Alert('Error en la creacion del objeto Microsoft.XMLHTTP : ' + Ole2TxtError()) END //.. Creo Objeto XML TRY oDoc := CreateObject( 'MSXML2.DOMDocument' ) CATCH Alert('Error en la creacion del objeto MSXML2.DOMDocument : ' + Ole2TxtError()) END Existe alguna alternativa para poder realizar ...
by mterraz
Wed Nov 18, 2015 1:26 pm
 
Forum: FiveWin para CA-Clipper
Topic: Crear Objetos en 16 bits
Replies: 1
Views: 1309

Re: Calculating or controling IBAN numbers

... ISOcountry As String, ByVal banknumber As String, ByVal Account As String) As String Dim xd As Object Set xd = CreateObject("msxml2.domdocument.4.0") xd.Load "http://www.ibanbic.be/IBANBIC.asmx/calculateIBAN2?ISOcountry=" & ISOcountry & "&banknumber=" ...
by bart
Wed Feb 25, 2015 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculating or controling IBAN numbers
Replies: 5
Views: 6090

Re: WEB SERVICE ayuda

... la creacion del objeto Microsoft.XMLHTTP : " + Ole2TxtError()) return .F. end end // Creando OBJETO XML try doc := CreateObject( "MSXML2.DOMDocument" ) catch try doc := CreateObject( "MSXML2.DOMDocument" ) catch Alert("Error en la creacion del objeto MSXML2.DOMDocument ...
by Enrrique Vertiz
Thu Nov 20, 2014 5:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: WEB SERVICE ayuda
Replies: 8
Views: 4422
Next

Return to advanced search