From srikanth007m at gmail.com Wed Oct 3 06:17:55 2007 From: srikanth007m at gmail.com (chinni) Date: Tue, 2 Oct 2007 21:17:55 -0700 Subject: [XML-SIG] xml reading and parsing Message-ID: Hi, I am working on MAC and my App was based on Xml file.If any updates r any changes in the xml file my app will load that changes. as i am new to python.i want to automate that one. there will be one URL and size will mention in that Xml file.i want to write a script so that it will download the file and have to check the size with my Xml file and downloaded file size.if size mismatch it has to show both current size and also xpected size.I want to write a script.so that it has to start download all App's at a time.so finally here is the sample O/P Appname Downloadedsize Expectedsize result XXXX 2554958 2554958 Pass XXXX 832158 754112 Fail Here the size is in KB's.Now plz tell me how to write the script in python. Thanx in Advance to all :) -- Cheers, M.Srikanth Kumar, Phone no: +91-9866774007 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/xml-sig/attachments/20071002/bcb3a58c/attachment.htm From bortzmeyer at nic.fr Wed Oct 3 14:51:47 2007 From: bortzmeyer at nic.fr (Stephane Bortzmeyer) Date: Wed, 3 Oct 2007 14:51:47 +0200 Subject: [XML-SIG] xml reading and parsing In-Reply-To: References: Message-ID: <20071003125147.GA24962@nic.fr> On Tue, Oct 02, 2007 at 09:17:55PM -0700, chinni wrote a message of 62 lines which said: > if size mismatch it has to show both current size and also xpected > size. May be http://www.catb.org/~esr/faqs/smart-questions.html#homework? From bwinton at latte.ca Wed Oct 3 16:42:53 2007 From: bwinton at latte.ca (Blake Winton) Date: Wed, 03 Oct 2007 10:42:53 -0400 Subject: [XML-SIG] xml reading and parsing In-Reply-To: <20071003125147.GA24962@nic.fr> References: <20071003125147.GA24962@nic.fr> Message-ID: <4703AA6D.10602@latte.ca> Stephane Bortzmeyer wrote: > chinni wrote >> if size mismatch it has to show both current size and also xpected >> size. > May be > http://www.catb.org/~esr/faqs/smart-questions.html#homework? Yeah, really? It didn't seem particularly homework-ish to me... Perhaps it's because I've had to do this a couple of times at my job, or perhaps I just took different courses than you did... Later, Blake. From srikanth007m at gmail.com Thu Oct 4 12:10:24 2007 From: srikanth007m at gmail.com (chinni) Date: Thu, 4 Oct 2007 15:40:24 +0530 Subject: [XML-SIG] XML-SIG Digest, Vol 54, Issue 2 In-Reply-To: References: Message-ID: Thank You for responding. Can you tell me just how to solve this issue so that it will help me so much. Thank you in advance On 10/4/07, xml-sig-request at python.org wrote: > > Send XML-SIG mailing list submissions to > xml-sig at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/xml-sig > or, via email, send a message with subject or body 'help' to > xml-sig-request at python.org > > You can reach the person managing the list at > xml-sig-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of XML-SIG digest..." > > > Today's Topics: > > 1. Re: xml reading and parsing (Stephane Bortzmeyer) > 2. Re: xml reading and parsing (Blake Winton) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 3 Oct 2007 14:51:47 +0200 > From: Stephane Bortzmeyer > Subject: Re: [XML-SIG] xml reading and parsing > To: srikanthkumar007m at rediffmail.com > Cc: xml-sig at python.org > Message-ID: <20071003125147.GA24962 at nic.fr> > Content-Type: text/plain; charset=us-ascii > > On Tue, Oct 02, 2007 at 09:17:55PM -0700, > chinni wrote > a message of 62 lines which said: > > > if size mismatch it has to show both current size and also xpected > > size. > > May be > http://www.catb.org/~esr/faqs/smart-questions.html#homework? > > > ------------------------------ > > Message: 2 > Date: Wed, 03 Oct 2007 10:42:53 -0400 > From: Blake Winton > Subject: Re: [XML-SIG] xml reading and parsing > To: Stephane Bortzmeyer > Cc: srikanthkumar007m at rediffmail.com, xml-sig at python.org > Message-ID: <4703AA6D.10602 at latte.ca> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Stephane Bortzmeyer wrote: > > chinni wrote > >> if size mismatch it has to show both current size and also xpected > >> size. > > May be > > http://www.catb.org/~esr/faqs/smart-questions.html#homework? > > Yeah, really? It didn't seem particularly homework-ish to me... > > Perhaps it's because I've had to do this a couple of times at my job, or > perhaps I just took different courses than you did... > > Later, > Blake. > > > End of XML-SIG Digest, Vol 54, Issue 2 > ************************************** > -- Cheers, M.Srikanth Kumar, Phone no: +91-9866774007 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/xml-sig/attachments/20071004/28ffea0a/attachment.htm From fabian at syameses.com Wed Oct 17 20:16:15 2007 From: fabian at syameses.com (=?ISO-8859-1?Q?Fabian_L=F3pez?=) Date: Wed, 17 Oct 2007 20:16:15 +0200 Subject: [XML-SIG] xml parsing for weblogs.com xml file Message-ID: <851acc320710171116u57052751u7d692354ad5b55b7@mail.gmail.com> Dear colegues, I am quite new in Python and I have been looking for a library to parse a xml document. I know that maybe the best solution for what I am programming is to use SAX, but I have a problem in xml format. WEblogs.com changes.xmldocument uses the following syntax: The problem is that weblog tag doesn't finish with and I don't really know if this library will work. I only want to take the attributes of weblog tag. Can anyone tell me if SAX can do it or if I need some special and better library? Thanks for your support, Fabian -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/xml-sig/attachments/20071017/7fc61c0e/attachment.htm From bortzmeyer at nic.fr Wed Oct 17 21:52:11 2007 From: bortzmeyer at nic.fr (Stephane Bortzmeyer) Date: Wed, 17 Oct 2007 21:52:11 +0200 Subject: [XML-SIG] xml parsing for weblogs.com xml file In-Reply-To: <851acc320710171116u57052751u7d692354ad5b55b7@mail.gmail.com> References: <851acc320710171116u57052751u7d692354ad5b55b7@mail.gmail.com> Message-ID: <20071017195211.GB1072@sources.org> On Wed, Oct 17, 2007 at 08:16:15PM +0200, Fabian L?pez wrote a message of 51 lines which said: > The problem is that weblog tag doesn't finish with That's perfectly normal and perfectly legal XML. Do note that is an empty element (see the slash at the end). > and I don't really know if this library will work. If a library cannot parse this, it is not a XML library. From stefan_ml at behnel.de Thu Oct 18 07:49:13 2007 From: stefan_ml at behnel.de (Stefan Behnel) Date: Thu, 18 Oct 2007 07:49:13 +0200 Subject: [XML-SIG] xml parsing for weblogs.com xml file In-Reply-To: <851acc320710171116u57052751u7d692354ad5b55b7@mail.gmail.com> References: <851acc320710171116u57052751u7d692354ad5b55b7@mail.gmail.com> Message-ID: <4716F3D9.3000604@behnel.de> Fabian L?pez wrote: > I am quite new in Python and I have been looking for a library to parse a > xml document. There are currently two options I'd recommend: lxml and ElementTree. Both are mostly compatible, but much easier to use than SAX. http://codespeak.net/lxml > I know that maybe the best solution for what I am programming > is to use SAX, No. SAX is always a problem, rarely a solution and almost never the best solution. > The problem is that weblog tag doesn't finish with and I don't > really know if this library will work. I only want to take the attributes of > weblog tag. Can anyone tell me if SAX can do it or if I need some special > and better library? Both. Stefan From fabian at syameses.com Mon Oct 22 20:37:34 2007 From: fabian at syameses.com (=?ISO-8859-1?Q?Fabian_L=F3pez?=) Date: Mon, 22 Oct 2007 20:37:34 +0200 Subject: [XML-SIG] xml parsing for weblogs.com xml file In-Reply-To: <4716F3D9.3000604@behnel.de> References: <851acc320710171116u57052751u7d692354ad5b55b7@mail.gmail.com> <4716F3D9.3000604@behnel.de> Message-ID: <851acc320710221137o7d79598bn43257bf308d9791e@mail.gmail.com> Thanks, that's great, I am using lxml library and works perfectly! 2007/10/18, Stefan Behnel : > > > Fabian L?pez wrote: > > I am quite new in Python and I have been looking for a library to parse > a > > xml document. > > There are currently two options I'd recommend: lxml and ElementTree. Both > are > mostly compatible, but much easier to use than SAX. > > http://codespeak.net/lxml > > > > I know that maybe the best solution for what I am programming > > is to use SAX, > > No. SAX is always a problem, rarely a solution and almost never the best > solution. > > > > The problem is that weblog tag doesn't finish with and I don't > > really know if this library will work. I only want to take the > attributes of > > weblog tag. Can anyone tell me if SAX can do it or if I need some > special > > and better library? > > Both. > > Stefan > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/xml-sig/attachments/20071022/b32db22b/attachment.htm From fabian at syameses.com Mon Oct 22 20:45:09 2007 From: fabian at syameses.com (=?ISO-8859-1?Q?Fabian_L=F3pez?=) Date: Mon, 22 Oct 2007 20:45:09 +0200 Subject: [XML-SIG] parsing chinese characters Message-ID: <851acc320710221145m7f03107u294de028923f88f9@mail.gmail.com> Hi, I am parsing an XML file that includes chineses characters, like ^ ?u?u?????????w.?????L???????? or ????????????... The problem is that I get an error like: UnicodeEncodeerror:'charmap' codec can't encode characters in position.... The thing is that I would like to ignore it and parse all the characters less these ones. So, could anyone help me? I suppose that I can catch an exception that ignores it or maybe use any function that detects this chinese characters and after that ignore them. Thanks!! Fabian -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/xml-sig/attachments/20071022/a9f0b8d2/attachment.htm From morillas at gmail.com Mon Oct 22 22:52:16 2007 From: morillas at gmail.com (Luis Miguel Morillas) Date: Mon, 22 Oct 2007 22:52:16 +0200 Subject: [XML-SIG] parsing chinese characters In-Reply-To: <851acc320710221145m7f03107u294de028923f88f9@mail.gmail.com> References: <851acc320710221145m7f03107u294de028923f88f9@mail.gmail.com> Message-ID: <68d25cbc0710221352w75998fc0j891866d09c9cd298@mail.gmail.com> You must add the correct encoding info in the xml source file. Ex. using amara: chinese.xml ?u?u?????????w.?????L???????? >>> import amara >>> doc = amara.parse('chinese.xml') >>> print unicode(doc.test) >>> ?u?u?????????w.?????L???????? No problem with big5 >>> doc = amara.parse('http://xml.ascc.net/test/wfall/big5/test13.xml') >>> 2007/10/22, Fabian L??pez : > Hi, > I am parsing an XML file that includes chineses characters, like > ^?u?u?????????w.?????L???????? or ????????????... The problem is that I get an error like: > UnicodeEncodeerror:'charmap' codec can't encode characters in position.... > The thing is that I would like to ignore it and parse all the characters > less these ones. So, could anyone help me? I suppose that I can catch an > exception that ignores it or maybe use any function that detects this > chinese characters and after that ignore them. > > Thanks!! > Fabian > > _______________________________________________ > XML-SIG maillist - XML-SIG at python.org > http://mail.python.org/mailman/listinfo/xml-sig > > -- Saludos, -- Luis Miguel From stefan_ml at behnel.de Tue Oct 23 08:26:58 2007 From: stefan_ml at behnel.de (Stefan Behnel) Date: Tue, 23 Oct 2007 08:26:58 +0200 Subject: [XML-SIG] parsing chinese characters In-Reply-To: <851acc320710221145m7f03107u294de028923f88f9@mail.gmail.com> References: <851acc320710221145m7f03107u294de028923f88f9@mail.gmail.com> Message-ID: <471D9432.5010207@behnel.de> Fabian L?pez wrote: > I am parsing an XML file that includes chineses characters, like ^ > ???????.??????? or ??????... The problem is that I get an error like: > UnicodeEncodeerror:'charmap' codec can't encode characters in position.... > The thing is that I would like to ignore it and parse all the characters > less these ones. So, could anyone help me? I suppose that I can catch an > exception that ignores it or maybe use any function that detects this > chinese characters and after that ignore them. If the parser can't handle the characters here, it's because the document is broken and does not declare the correct encoding. >From your last post, I assume you're using lxml to do this (it's always helpful to state what software you use when you describe a problem with it). Since 2.0alpha3(?), you can override the encoding of the parsed file with the "encoding" keyword that you can pass to the XMLParser class. So, for example, you can try parsing the document as usual and if that fails, try parsing it with a different parser that is configured for a specific encoding override. Or you can determine the encoding based on some external source (like what the HTTP protocol tells you), and then use an override parser right away, or use that information as the first fallback. Stefan From fabian at syameses.com Tue Oct 23 18:42:26 2007 From: fabian at syameses.com (=?ISO-8859-1?Q?Fabian_L=F3pez?=) Date: Tue, 23 Oct 2007 18:42:26 +0200 Subject: [XML-SIG] parsing chinese characters In-Reply-To: <471D9432.5010207@behnel.de> References: <851acc320710221145m7f03107u294de028923f88f9@mail.gmail.com> <471D9432.5010207@behnel.de> Message-ID: <851acc320710230942pafdcbb6l60e3a3a262d024cf@mail.gmail.com> Thanks Stefan, the problem was in print statement, so I decided to catch and ignore that exception error because chinese characters don't interest to me. The document wasn't broken. Finally it works well.Parser worked well. Thanks for your support! Fabian 2007/10/23, Stefan Behnel : > > > Fabian L??pez wrote: > > I am parsing an XML file that includes chineses characters, like ^ > > ?u?u?????????w.?????L???????? or ????????????... The problem is that I get an error like: > > UnicodeEncodeerror:'charmap' codec can't encode characters in > position.... > > The thing is that I would like to ignore it and parse all the characters > > less these ones. So, could anyone help me? I suppose that I can catch an > > exception that ignores it or maybe use any function that detects this > > chinese characters and after that ignore them. > > If the parser can't handle the characters here, it's because the document > is > broken and does not declare the correct encoding. > > From your last post, I assume you're using lxml to do this (it's always > helpful to state what software you use when you describe a problem with > it). > Since 2.0alpha3(?), you can override the encoding of the parsed file with > the > "encoding" keyword that you can pass to the XMLParser class. So, for > example, > you can try parsing the document as usual and if that fails, try parsing > it > with a different parser that is configured for a specific encoding > override. > Or you can determine the encoding based on some external source (like what > the > HTTP protocol tells you), and then use an override parser right away, or > use > that information as the first fallback. > > Stefan > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/xml-sig/attachments/20071023/420349c4/attachment.htm From phudson1442 at gmail.com Thu Oct 25 22:10:44 2007 From: phudson1442 at gmail.com (Paul Hudson) Date: Thu, 25 Oct 2007 13:10:44 -0700 Subject: [XML-SIG] PyXML setup.py install - MSVC Compile Errors (error LNK2019: unresolved external symbol __imp__) Message-ID: <17632efd0710251310n5a4a12d4ufcb3258448aaf5bc@mail.gmail.com> Hello Everyone, I am attempting to setup PyXML under ActiveState's 64bit build of Python. I am running WinXP x64 on an AMD Opteron proc. I am using Visual C++ 2003. I referenced this page to get as far as I have: http://www.vrplumber.com/programming/mstoolkit/ (I made the recommended changes to msvccompiler.py) When I run "python setup.py install", compilation gets to the linking stage and then I get a lot of errors similar to this: pyexpat.obj : error LNK2019: unresolved external symbol __imp__PyTuple_New referenced in function _call_character_handler I have found some info pointing to the "__imp__" prefix being the problem and that this is caused by using __declspec( dllimport ). I am not very experienced with compilation flags, definitions, declarations, etc. If anyone can offer some insight into what is causing these errors, it would be very appreciated. Thanks, Paul C:\dev\Python\source\PyXML-0.8.4>python setup.py install running install running build running build_py running build_ext building '_xmlplus.parsers.pyexpat' extension C:\Program Files (x86)\Microsoft Visual Studio .NET 2003\VC7\BIN\cl.exe /c /nologo /Ox /MD /W3 /GX /DNDEBUG -DXML_NS=1 - DXML_DTD=1 -DBYTEORDER=1234 -DXML_CONTEXT_BYTES=1024 -DHAVE_MEMMOVE=1 -DXML_STATIC= -Iextensions/expat/lib -Ic:\python24 \include -Ic:\python24\PC /Tcextensions/pyexpat.c /Fobuild\temp.win32- 2.4\Release\extensions/pyexpat.obj cl : Command line warning D4029 : optimization is not available in the standard edition compiler pyexpat.c C:\Program Files (x86)\Microsoft Visual Studio .NET 2003\VC7\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:c:\pytho n24\libs /LIBPATH:c:\python24\PCBuild /EXPORT:initpyexpat build\temp.win32- 2.4\Release\extensions/pyexpat.obj build\temp .win32-2.4\Release\extensions/expat/lib/xmlparse.obj build\temp.win32- 2.4\Release\extensions/expat/lib/xmlrole.obj build \temp.win32-2.4\Release\extensions/expat/lib/xmltok.obj/OUT:build\lib.win32- 2.4\_xmlplus\parsers\pyexpat.pyd /IMPLIB:bu ild\temp.win32-2.4\Release\extensions\pyexpat.lib Creating library build\temp.win32-2.4\Release\extensions\pyexpat.lib and object build\temp.win32-2.4\Release\extensions\pyexpat.exp pyexpat.obj : error LNK2019: unresolved external symbol __imp__PyTuple_New referenced in function _call_character_handler pyexpat.obj : error LNK2019: unresolved external symbol __imp__PyUnicodeUCS2_DecodeUTF8 referenced in function _conv_string_len_to_unicode pyexpat.obj : error LNK2019: unresolved external symbol __imp___Py_NoneStruct referenced in function _conv_string_len_to_unicode pyexpat.obj : error LNK2019: unresolved external symbol __imp__PyString_FromStringAndSize referenced in function _conv_string_len_to_utf8 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/xml-sig/attachments/20071025/b06d60be/attachment.htm From stefan_ml at behnel.de Fri Oct 26 08:48:24 2007 From: stefan_ml at behnel.de (Stefan Behnel) Date: Fri, 26 Oct 2007 08:48:24 +0200 Subject: [XML-SIG] PyXML setup.py install - MSVC Compile Errors (error LNK2019: unresolved external symbol __imp__) In-Reply-To: <17632efd0710251310n5a4a12d4ufcb3258448aaf5bc@mail.gmail.com> References: <17632efd0710251310n5a4a12d4ufcb3258448aaf5bc@mail.gmail.com> Message-ID: <47218DB8.8020402@behnel.de> Paul Hudson wrote: > I am attempting to setup PyXML under ActiveState's 64bit build of Python. If you are not tied to PyXML by some external constraint, you might want to use ElementTree or lxml instead, which are easy to use and actively maintained (as opposed to PyXML). http://codespeak.net/lxml Stefan From stoeber-yurdakul at weatherarts.de Mon Oct 29 21:55:59 2007 From: stoeber-yurdakul at weatherarts.de (Regina Stoeber-Yurdakul) Date: Mon, 29 Oct 2007 20:55:59 -0000 Subject: [XML-SIG] XML-SIG Digest, Vol 10, Issue 16 In-Reply-To: References: Message-ID: <406C35BD.2070905@weatherarts.de> On the look for a business partner Sorry , I am sure this is not the right place for offering a job, but I do not know, where could be a better one for this. I am looking for a XML and python -expert, who is a strong advocate of Free Software as a businesspartner. WeatherArts http://www.weatherarts.de is a Start-up in Germany. Product: A new generation of interactive weather for broadband internet and multi media telefones. Company Founder is Regina St?ber-Yurdakul a digital artist .(see resume at http://www.weatherarts.de/resume-eng.html). An experienced programmer in a decisive position is required. WeatherArts being now in the offering phase , has interesting contacts in the area of mobile phones. There is a business plan existing. Financing will take place , when there is an appropriate letter of intent, which could come soon. A FS/OS research project to develop interactive, automatic nowcasts is on the way. The Austrian National Weatherservice Zamg has agreed to contribute to this project. The partner should be able to manage such a project. Requirements: Senior programmer , XML, Java, SQL, C, Python, Apache etc, cocoon. Best regards Regina St?ber-Yurdakul WeatherArts Spohrstr.54 60318 Frankfurt Tel: 049-(0)69-59674868 Fax:049-(0)69-59674936 From morillas at gmail.com Mon Oct 29 23:06:18 2007 From: morillas at gmail.com (Luis Miguel Morillas) Date: Mon, 29 Oct 2007 23:06:18 +0100 Subject: [XML-SIG] PyXML for py 2.5 In-Reply-To: <8B473CE55AB5B34FAAE37EF3BE19EE949E09E6@esebe113.NOE.Nokia.com> References: <8B473CE55AB5B34FAAE37EF3BE19EE949E09E6@esebe113.NOE.Nokia.com> Message-ID: <68d25cbc0710291506m79a3cb58w616d0f11dbf2b8f1@mail.gmail.com> 2007/8/21, Brenda.Taylor at nokia.com : > > > Hi > Do you have a version of PyXML that works with python version 2.5? If not > when do you expect it to be available? > > Are you on windows? I compiled a this version [1] for a colleague. I've never used it because I prefer amara [2], more pythonic and better mantained. [1] http://platea.pntic.mec.es/~jmorilla/python/PyXML-0.8.4.win32-py2.5.exe [2] http://notes.4suite.org/AmaraXmlToolkit > Regards > > Brenda > > > > Nokia UK Limited registered in England & Wales > > Registered Number: 02212202 > > Registered Office: Lancaster House, Lancaster Way, Ermine Business Park, > Huntingdon, Cambridgeshire, PE29 6YJ > > The contents of this email are intended for the named addressee only. It > contains information which may be confidential, legally privileged and > protected by law. Unauthorised use, disclosure or copying of it may be > unlawful. If you have received this email in error please notify us > immediately by email and then delete the original email from your system. We > make every effort to keep our network free from computer viruses. However, > internet communications are not secure and therefore you do need to verify > that this email and any attachment(s) are free of viruses as we can take no > responsibility for any computer virus which might be transferred by way of > this email. > > > > _______________________________________________ > XML-SIG maillist - XML-SIG at python.org > http://mail.python.org/mailman/listinfo/xml-sig > > -- Saludos, -- Luis Miguel From hsfsfx at yahoo.com Tue Oct 30 00:25:06 2007 From: hsfsfx at yahoo.com (Scott Whitney) Date: Mon, 29 Oct 2007 16:25:06 -0700 (PDT) Subject: [XML-SIG] Buy Vicodin online today, overnight shipping xyiz kccg v Message-ID: <226212.16078.qm@web30615.mail.mud.yahoo.com> Where do I buy Vicodin online, reliable? Scott Whitney President www.premiereagle.com scottwhitney at premiereagle.com 323-969-0000 office 323-240-5358 cell 323-851-9992 fax Buying a New or Used Car? Free Auto Quotes- 45 Years in LA www.okumacars.com __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From stefan_ml at behnel.de Tue Oct 30 08:22:49 2007 From: stefan_ml at behnel.de (Stefan Behnel) Date: Tue, 30 Oct 2007 08:22:49 +0100 Subject: [XML-SIG] XBEL XSD In-Reply-To: <7A83837DAFF2415FB16591938F20AA3B@Gandalf> References: <7A83837DAFF2415FB16591938F20AA3B@Gandalf> Message-ID: <4726DBC9.2060708@behnel.de> Tom Kalmijn wrote: > I'd like to know if you have the XBEL DTD available as an XSD? > Of course I can run it through some conversion tool That would be my response. I assume you know trang? Stefan