Search found 128 matches: txmldocument

Return to advanced search

Re: Validar respuesta desde un WEBSERVICE

... xRes y xRes[1], yo he intentado todo esto xBrowser[xRes] xBrowser[1] xBrowser[1,1] xBrowser[1,2] xBrowser[1,3] xBrowser[1,4] xBrowser[1,5] oXml:=TXmlDocument():New(xRes) xbrowse( oXml ) Pero en ninguno puedo ver o sacar los valores de respuesta que el WS devuelve. Aqui tienen el XML que consegui ...
by Adolfo
Thu Jan 26, 2017 1:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Validar respuesta desde un WEBSERVICE
Replies: 6
Views: 2540

Re: Validar respuesta desde un WEBSERVICE

... anserkk. yes, it is an array in xml format, I can inspect it with xRes:=oSoapClient:ObtTok("USUARIO999", "tscxfxreger") oXml:=TXmlDocument():New(xRes) xbrowse( oXml ) But the content has none of the answers I was expecting. The WS documentation shows that the posible answers ...
by Adolfo
Wed Jan 25, 2017 2:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Validar respuesta desde un WEBSERVICE
Replies: 6
Views: 2540

Re: problem with read from xml file

... break Endif cString:=Memoread( cFileName ) // cString:=strtran(cString,'<![CDATA[','') // cString:=strtran(cString,']]>','') oXmlDoc := TXmlDocument():new(,5) // ,HBXML_STYLE_NOESCAPE ) // HBXML_TYPE_CDATA HBXML_STYLE_NOESCAPE if !( oXmlDoc:nError==HBXML_ERROR_NONE ) wait "xml file ...
by kajot
Tue Jan 24, 2017 8:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with read from xml file
Replies: 17
Views: 3572

Re: problem with read from xml file

... SAY oTEKST var mTekst OF oDlg PIXEL SIZE 150,12 dd:=day(date()) mm:=month(date()) rr:=year(date()) // hFile := FOpen( cFileName ) oXmlDoc := TXmlDocument():new() // HBXML_TYPE_CDATA HBXML_STYLE_NOESCAPE oXmlDoc:read( Memoread( cFileName ) ) // oXmlDoc:read( hFile )
by kajot
Thu Jan 19, 2017 9:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with read from xml file
Replies: 17
Views: 3572

Leer archivo xml

Colegas, estoy utilizando la clase TXmlDocument para leer un archivo xml pero me encuentro con algunas dificultades. Este es el archivo que pretendo leer <?xml version="1.0" encoding="UTF-8"?><presentacion>  ...
by horacio
Mon Nov 14, 2016 4:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer archivo xml
Replies: 3
Views: 994

Re: Información sobre TXmlDocument y TXmlIterator

FiveWiDi wrote:Hola a todos,

Dónde puedo encontrar información sobre la clase TXmlDocument y TXmlIterator?

Quiero entender los ejemplos que aporta FiveWin pero no sé que significan algunas DATAS ni el comportamiento de algun MÉTODO.


Muchas gracias,
by FiveWiDi
Wed Aug 24, 2016 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Información sobre TXmlDocument y TXmlIterator
Replies: 2
Views: 874

Información sobre TXmlDocument y TXmlIterator

Hola a todos,

Dónde puedo encontrar información sobre la clase TXmlDocument y TXmlIterator?

Quiero entender los ejemplos que aporta FiveWin pero no sé que significan algunas DATAS ni el comportamiento de algun MÉTODO.
by FiveWiDi
Tue Aug 23, 2016 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Información sobre TXmlDocument y TXmlIterator
Replies: 2
Views: 874

Información sobre TXmlDocument

Hola a todos,

Dónde puedo encontrar información sobre la clase TXmlDocument?

Quiero entender los ejemplos que aporta FiveWin pero no sé que significan algunas DATAS ni el comportamiento de algun MÉTODO.
by FiveWiDi
Tue Aug 23, 2016 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Información sobre TXmlDocument
Replies: 1
Views: 493

XML Read Problems

... := Directory( cSource + "*.XML" ) IF LEN(aXmlFile)>0 cXmlFile := aXmlFile[1,1] hFile := FOpen( cSource + cXmlFile ) oXmlDoc := TXmlDocument():New( hFile ) oXmlIter := TXmlIterator():New( oXmlDoc:oRoot ) WHILE .T. oTagActual = oXmlIter:Next() If oTagActual != nil //MsgInfo( oTagActual:cName, ...
by cdmmaui
Tue Apr 26, 2016 1:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XML Read Problems
Replies: 1
Views: 1055

Re: Tip Client = Harbour / MSVC 2015 Error

... cXml := '<request>'+hB_osnewline()+; ' <newdata>' + "" + ; ' </request>'+hB_osnewline() Local cRet LOCAL oXmlDoc := TXmlDocument():new( ) LOCAL oXmlNode, oXmlRecScan, oXmlFieldScan local iDLL := LoadLibrary( "wininet.dll" ) IF .NOT. oHttp:open() MsgAlert( ...
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: 8733

Re: Extract Text

... leave the tags in place as part of the returned strings or not. With XML I typically want the tags, but with other raw logs I do not. I do use the TXMLDocument class, which is used in samples\xmlreader.prg, to parse the XML after it is extracted.
by rhlawek
Wed Mar 16, 2016 2:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extract Text
Replies: 6
Views: 1817

Re: Conversion text Unicode to ASCII?

... Now you use file  "MyAscii.xml"  http://forums.fivetechsupport.com/viewtopic.php?f=6&t=31092&p=179597&hilit=TXmlDocument#p179597 http://forums.fivetechsupport.com/viewtopic.php?f=3&t=30679&p=176428&hilit=TXmlDocument#p176428
by cnavarro
Thu Dec 10, 2015 11:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Conversion text Unicode to ASCII?
Replies: 5
Views: 730

Conversion text Unicode to ASCII?

Hi, I have an Unicoded XML and I could not open it TXmlDocument class. I have converted xml file unicode to Ascii at external editor and there is no problem.     LOCAL oXmlDoc := TXmlDocument():new()    xMLFILE := "MyXML.xml"  ...
by Horizon
Wed Dec 09, 2015 7:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Conversion text Unicode to ASCII?
Replies: 5
Views: 730
PreviousNext

Return to advanced search