Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Flex 3 with Java

You're reading from  Flex 3 with Java

Product type Book
Published in Jun 2009
Publisher Packt
ISBN-13 9781847195340
Pages 304 pages
Edition 1st Edition
Languages

Table of Contents (18) Chapters

Flex 3 with Java
Credits
About the Author
About the Reviewers
1. Preface
1. Installing and Configuring Adobe Flex 2. Introduction to Flex 3 Framework 3. Introduction to ActionScript 3.0 4. Using External API and LocalConnection 5. Working with XML 6. Overview of LiveCycle Data Services and BlazeDS 7. Flex Data Access Methods 8. Communicating with Server-side Java 9. Debugging Techniques 10. Styling your Application 11. Packaging and Deployment 12. Internationalization and Localization 13. Creating an E-commerce Application

XML basics


XML is a standard way to represent categorized data into a tree structure similar to HTML documents. XML is written in plain-text format, and hence it is very easy to read, write, and manipulate its data.

A typical XML document looks like this:

<book>
<title>Flex 3 with Java</title>
<author>Satish Kore</author>
<publisher>Packt Publishing</publisher>
<pages>300</pages>
</book>

Generally, XML data is known as XML documents and it is represented by tags wrapped in angle brackets (<>). These tags are also known as XML elements. Every XML document starts with a single top-level element known as the root element. Each element is distinguished by a set of tags known as the opening tag and the closing tag. In the previous XML document,<book> is the opening tag and</book> is the closing tag. If an element contains no content, it can be written as an empty statement (also called self-closing statement). For example...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}