Page 1 of 1

To create a XML file

Posted: Thu Feb 12, 2015 12:34 am
by Armando
Friends:

Where I can find information (Doc/Sintaxis) on creating an XML file from a TXT file?

specifically how create the next line:

<xs:schema xmlns:BCE="www.sat.gob.mx/esquemas/ContabilidadE/1 ... mprobacion"' +;
' xmlns:xs="http://www.w3.org/2001/XMLSchema" targetnamespace="www.sat.gob.mx/esquemas/contabilidadE/1 ... mprobacion"' +;
' elementFormDefault="qualified" attributeFormDefault="unqualified">

I found the next topic but it's not enough to me

http://forums.fivetechsupport.com/viewt ... ent#p18279

Best regards

Re: To create a XML file

Posted: Thu Feb 12, 2015 2:12 am
by Marco Augusto
Un archivo xml es un archivo ascii

yo lo estoy haciendo de la siguiente manera usando TDOSPRN

AR="cuentas.XML'
oPrn := TDosPrn():New(AR)
XINI1=[<?xml version="1.0" encoding="UTF-8"?>]
XINI2=[<catalogocuentas:Catalogo xsi:schemaLocation="http://www.sat.gob.mx/esquemas/Contabil ... as_1_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:catalogocuentas="http://www.sat.gob.mx/esquemas/Contabil ... ogoCuentas" Version="1.1" RFC="XAXX010101000" Mes="01" Anio="2015">]
XFIN =[</catalogocuentas:Catalogo>]
oPRN:SAY( REN,0,XINI1)
REN=REN+1
oPRN:SAY( REN,0,XINI2)
REN=REN+2
oPRN:SAY( REN,0,XFIN)
oPRN:END()

Re: To create a XML file

Posted: Thu Feb 12, 2015 2:51 am
by Armando
Marco Augusto:

Me alegra saber de ti :D , Gracias por el consejo.

Estoy usando la lib hbXml, pero ya me atoré :oops:

PodrĂ­amos ponernos en contacto por Skype ?
soidito@hotmail.com

Saludos