BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Where do I start with XML!?

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi XML
View previous topic :: View next topic  
Author Message
Sarah
Guest





PostPosted: Tue Sep 20, 2005 6:19 pm    Post subject: Where do I start with XML!? Reply with quote



I am a Delphi developer interested in learning XML

Where do I start with it?
Do you know any good books, web sites or any other resources that help in learning XML?

Thanks in advance,
Sarah
Back to top
Marcel Bestebroer
Guest





PostPosted: Tue Sep 20, 2005 6:21 pm    Post subject: Re: Where do I start with XML!? Reply with quote



Sarah wrote:
Quote:
Do you know any good books, web sites or any other resources that help
in learning XML?

http://www.w3schools.com/xml/default.asp might be a nice start. Or
search the web for 'xml tutorial' or 'learn xml' or something like that.

--
Marcel Bestebroer (Team JEDI) http://delphi-jedi.org
Project JEDI Help coordinator
JEDI.NET team coordinator

To mail me, remove the obvious from my mail address

Back to top
Sarah
Guest





PostPosted: Tue Sep 20, 2005 6:57 pm    Post subject: Re: Where do I start with XML!? Reply with quote



Marcel Bestebroer wrote:
Quote:
http://www.w3schools.com/xml/default.asp might be a nice start.

I have done that. Thanks.

I also want to buy 1 or 2 XML books.
Don't know which are good..

-Sarah

Back to top
Rick Roen
Guest





PostPosted: Tue Sep 20, 2005 7:09 pm    Post subject: Re: Where do I start with XML!? Reply with quote

Sarah,

I went through this learning curve a few months ago. The books you want
would depend on what you want to do with XML. XML itself is often used in
combination with XSL to transform it into something else like HTML or XHTML
or plain text.

It was pretty rigorous for a few weeks while I was learning what to do and
making a LOT of stupid mistakes, but I really like what I am able to do now
as an extension to Delphi.

Perhaps a little more detail and I could recommend some other sources,
although I am away from my office now and may not recall the exact books
names.

If you know any HTML, you will be way ahead with XML since it is similarly
formed, except the tags have no inherent meaning except by mutual agreement
between interested parties.

Here is a Delphi site relating to XML:
http://delphi.about.com/od/objectpascalide/l/aa072500a.htm and check MS XML
site since they have a commonly used parser that Delphi can access to read
or create an XML file.

Rick


"Sarah" <SarahBram (AT) HotMail (DOT) com> wrote

Quote:
I am a Delphi developer interested in learning XML

Where do I start with it?
Do you know any good books, web sites or any other resources that help in
learning XML?

Thanks in advance,
Sarah



Back to top
Bob Swart
Guest





PostPosted: Wed Sep 21, 2005 12:49 pm    Post subject: Re: Where do I start with XML!? Reply with quote

Hi Sarah,

Quote:
I am a Delphi developer interested in learning XML

Where do I start with it?
Do you know any good books, web sites or any other resources that help
in learning XML?

For learning XML with Delphi, you can check a number of my articles,
like the following:

Delphi XML Document Programming
http://www.drbob42.com/examines/examin22.htm
With Delphi 6, new XML features have been added in the form of XML
document programming, XML Data Binding Wizard, XML Mapper and BizSnap
(SOAP/XML Web Services). This is the first in a series of articles about
Delphi 6 XML support, starting off with XML Document Programming in
Delphi 6.

Delphi XML Data Binding
http://www.drbob42.com/examines/examin23.htm
With Delphi 6 (and now also Kylix 2), new XML features have been added
in the form of XML document programming, XML Data Binding Wizard, XML
Mapper and BizSnap (SOAP/XML Web Services). This is the second in a
series of articles about XML support, this time about XML Data Binding.

Delphi XML Mapping Tool (XML Mapper)
http://www.drbob42.com/examines/examin25.htm
With Delphi 6 (and also Kylix 2), new XML features have been added in
the form of XML document programming, XML Data Binding Wizard, XML
Mapper and BizSnap (SOAP/XML Web Services). This is the third in my
series of articles about XML support, this time about the XML Mapping
Tool (also known as XML Mapper).

Introduction to XSTL with Delphi
http://www.drbob42.com/examines/examin50.htm
In this paper, I will introduce XSLT, and cover XSLT support in Delphi
in the form of the TXSLPageProducer component (and also see how to do it
using plain MSXML). Finally, we also see that XSLT on the .NET Framework
can be done using the XSL classes from the System.Xml.Xsl namespace,
which contains XslTransform for this purpose.

Quote:
Sarah

Groetjes,
Bob Swart (aka Dr.Bob - www.DrBob42.com)

--
Bob Swart Training & Consultancy (eBob42) - Borland Technology Partner
Delphi 2005 self-study training books: http://www.drbob42.com/training

Back to top
Nils Haeck
Guest





PostPosted: Thu Sep 22, 2005 11:57 am    Post subject: Re: Where do I start with XML!? Reply with quote

Quote:
Introduction to XSTL with Delphi

Perhaps I'm dyslectic (leesblind), but shouldn't that be "XSLT"? Or is it
some other acronym?

Nils
www.simdesign.nl




Back to top
Sarah
Guest





PostPosted: Thu Sep 22, 2005 9:57 pm    Post subject: Re: Where do I start with XML!? Reply with quote

Thanks Rick,

Though I am not a web developer, I do know HTML reasonably well.

I have to use XML as a bridge between our product and some other products our clients have.
Basically, I have to expose some of our custom format files/data to the other products as XML files.

I also love to present some of those new XML docs with nice XSL files, but that's something personal! :)

Thanks,
Sarah
Back to top
Sarah
Guest





PostPosted: Thu Sep 22, 2005 10:00 pm    Post subject: Re: Where do I start with XML!? Reply with quote

Thanks Bob,

That's very helpful.

Thanks,
Sarah
Back to top
Bob Swart
Guest





PostPosted: Fri Sep 23, 2005 6:27 am    Post subject: Re: Where do I start with XML!? Reply with quote

Hi Nils,

Quote:
Perhaps I'm dyslectic (leesblind), but shouldn't that be "XSLT"? Or is it
some other acronym?

Ehum, you're right of course. Fixed the title (which appears to have
been a type since Feb 2004 - nobody else noticed, or let me know ;-)

Quote:
Nils

Groetjes,
Bob Swart (aka Dr.Bob - www.DrBob42.com)

--
Bob Swart Training & Consultancy (eBob42) - Borland Technology Partner
Delphi 2005 PDF manuals available from http://www.drbob42.com/training

Back to top
Dave White
Guest





PostPosted: Fri Sep 23, 2005 8:01 pm    Post subject: Re: Where do I start with XML!? Reply with quote

"Sarah" <SarahBram (AT) HotMail (DOT) com> wrote

Quote:
I am a Delphi developer interested in learning XML

Where do I start with it?
Do you know any good books, web sites or any other resources that help in
learning XML?


http://www.amazon.com/exec/obidos/tg/detail/-/1591098629/qid=1127505615/sr=8-1/ref=pd_bbs_1/103-4971141-4608601?v=glance&s=books&n=507846



Back to top
Peter Flynn
Guest





PostPosted: Sun Oct 02, 2005 7:49 pm    Post subject: Re: Where do I start with XML!? Reply with quote

Sarah wrote:

Quote:
I am a Delphi developer interested in learning XML

Where do I start with it?

The FAQ is at http://xml.silmaril.ie/

Quote:
Do you know any good books, web sites or any other resources that help in
learning XML?

It depends what you are going to be using it for (ie just Delphi or
all kinds of other things as well). The conventional distinction
(as rough-and-ready as any of these distinctions are) is between
"data" XML and "document" XML, eg

Data:

<bid id="xyz123">
<timestamp>2005-10-02T13:42:23.34+0500</timestamp>
<item>38999536583658365863408263</item>
<value>34.00</value>
<currency>EUR</currency>
<user>SarahBram</user>
</bid>

Document:

<book>
<imprint>
<title>Pride and Prejudice</title>
<author>Jane Austen</author>
<date>1813</date>
</imprint>
<chapter>
<para>It is a truth universally acknowledged, that a
single man in possession of a good fortune must be in want
of a wife.</para>
....etc...
</chapter>
</book>

What you want to get out of it will probably guide what kind of book
or books you need to look at.

///Peter


Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi XML All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.