<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech99 &#187; XML</title>
	<atom:link href="http://www.tech99.us/category/information-technology/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech99.us</link>
	<description>Don&#039;t Stop Learning</description>
	<lastBuildDate>Sat, 07 Jan 2012 09:29:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SAXParser Example</title>
		<link>http://www.tech99.us/2010/03/saxparser-example/</link>
		<comments>http://www.tech99.us/2010/03/saxparser-example/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:30:51 +0000</pubDate>
		<dc:creator>Abid</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Java Read XML]]></category>
		<category><![CDATA[sax]]></category>
		<category><![CDATA[saxparser]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://techstop.abidshafiq.com/?p=136</guid>
		<description><![CDATA[// &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; // SAXExample.java // &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; // imports import java.io.*; import java.net.URL; import org.xml.sax.*; import org.xml.sax.helpers.DefaultHandler; import javax.xml.parsers.SAXParserFactory; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; /** * &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; * Demonstrate how to use SAX. * * @version 1.0 * @author Muhammad Abid (abidshafiq479@hotmail.com) * @author http://www.techstop.abidshafiq.com * &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; */ public class SAXExample extends HandlerBase{ // Store the locator [...]]]></description>
		<wfw:commentRss>http://www.tech99.us/2010/03/saxparser-example/feed/</wfw:commentRss>
		<slash:comments>68</slash:comments>
		</item>
		<item>
		<title>SOAP- Simple Object Access Protocol</title>
		<link>http://www.tech99.us/2010/02/soap-simple-object-access-protocol/</link>
		<comments>http://www.tech99.us/2010/02/soap-simple-object-access-protocol/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 04:01:05 +0000</pubDate>
		<dc:creator>Abid</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[simple web access protocol]]></category>
		<category><![CDATA[SOAP]]></category>
		<category><![CDATA[soap example]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://techstop.abidshafiq.com/?p=145</guid>
		<description><![CDATA[What is SOAP? SOAP stands for Simple Object Access Protocol SOAP is a communication protocol SOAP is for communication between applications SOAP is a format for sending messages SOAP communicates via Internet SOAP is platform independent SOAP is language independent SOAP is based on XML SOAP is simple and extensible SOAP allows you to get [...]]]></description>
		<wfw:commentRss>http://www.tech99.us/2010/02/soap-simple-object-access-protocol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java XML API comparison</title>
		<link>http://www.tech99.us/2010/02/java-xml-api-comparison/</link>
		<comments>http://www.tech99.us/2010/02/java-xml-api-comparison/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 09:41:11 +0000</pubDate>
		<dc:creator>Abid</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[sax]]></category>
		<category><![CDATA[saxparser]]></category>
		<category><![CDATA[stax]]></category>
		<category><![CDATA[trax]]></category>
		<category><![CDATA[xml api]]></category>
		<category><![CDATA[xpath]]></category>

		<guid isPermaLink="false">http://techstop.abidshafiq.com/?p=141</guid>
		<description><![CDATA[Feature StAX SAX DOM TrAX API Type Pull, streaming Push, streaming In memory tree XSLT Rule Ease of Use High Medium High Medium XPath Capability Not supported Not supported Supported Supported CPU and Memory Efficiency Good Good Varies Varies Forward Only Supported Supported Not supported Not supported Read XML Supported Supported Supported Supported Write XML [...]]]></description>
		<wfw:commentRss>http://www.tech99.us/2010/02/java-xml-api-comparison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Schema Design Pattern Introduction</title>
		<link>http://www.tech99.us/2009/12/xml-schema-design-pattern-introduction/</link>
		<comments>http://www.tech99.us/2009/12/xml-schema-design-pattern-introduction/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 00:42:21 +0000</pubDate>
		<dc:creator>Abid</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[design pattern]]></category>
		<category><![CDATA[Garden of Eden]]></category>
		<category><![CDATA[Russian Doll]]></category>
		<category><![CDATA[Salami Slice]]></category>
		<category><![CDATA[Venetian Blind]]></category>
		<category><![CDATA[xml design pattern]]></category>
		<category><![CDATA[xml schema]]></category>

		<guid isPermaLink="false">http://techstop.abidshafiq.com/?p=123</guid>
		<description><![CDATA[Here we shall define the four most used design patterns regarding XML schema, which are Russian Doll, Salami Slice, Venetian Blind, and Garden of Eden. These patterns can be distinguished by two easy conventions, Ease of use for instance developers Ease of reuse for schema developers Russian Doll In this XML Schema design pattern there [...]]]></description>
		<wfw:commentRss>http://www.tech99.us/2009/12/xml-schema-design-pattern-introduction/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>XML Schema</title>
		<link>http://www.tech99.us/2009/12/xml-schema/</link>
		<comments>http://www.tech99.us/2009/12/xml-schema/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 06:40:55 +0000</pubDate>
		<dc:creator>Abid</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[complex type]]></category>
		<category><![CDATA[simple type]]></category>
		<category><![CDATA[xml schema]]></category>
		<category><![CDATA[xml spy]]></category>
		<category><![CDATA[xml tools]]></category>

		<guid isPermaLink="false">http://techstop.abidshafiq.com/?p=112</guid>
		<description><![CDATA[XML structures schema define a class of documents by using schema components to constrain and provide meaning to the documents, usage and relationship among their parts, like, data types, elements and attributes in addition with values.  It provides the schema for specification for further information of document. Thus formally can be said that,

“XML Schema: Structures can be used to define, describe and catalogue XML vocabularies for classes of XML documents.”]]></description>
		<wfw:commentRss>http://www.tech99.us/2009/12/xml-schema/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>XML Namespace</title>
		<link>http://www.tech99.us/2009/12/xml-namespace/</link>
		<comments>http://www.tech99.us/2009/12/xml-namespace/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 08:14:36 +0000</pubDate>
		<dc:creator>Abid</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[html and xml]]></category>
		<category><![CDATA[namespace]]></category>
		<category><![CDATA[web services]]></category>
		<category><![CDATA[WSDL]]></category>
		<category><![CDATA[XML is not]]></category>
		<category><![CDATA[xml namespace]]></category>
		<category><![CDATA[xml schema]]></category>

		<guid isPermaLink="false">http://techstop.abidshafiq.com/?p=93</guid>
		<description><![CDATA[To avoid the conflict in xml schema namespace is the solution.

It provides the way to define a unique identifier in a schema context. In an XML schema, you can create elements and types, which are named distinctively within the namespace of the schema. An element is the namespace's definition scope, which can override a namespace declaration defined in a parent element. Given that a namespace defines a context in which identifiers must be unique, schemas can safely integrate definitions from other namespaces—even those with the same names]]></description>
		<wfw:commentRss>http://www.tech99.us/2009/12/xml-namespace/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>What XML is NOT?</title>
		<link>http://www.tech99.us/2009/12/what-is-xml-is-not/</link>
		<comments>http://www.tech99.us/2009/12/what-is-xml-is-not/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 18:20:26 +0000</pubDate>
		<dc:creator>Abid</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[html and xml]]></category>
		<category><![CDATA[XML is not]]></category>

		<guid isPermaLink="false">http://abidshafiq.com/techstop/?p=16</guid>
		<description><![CDATA[XML is not itself a display language. in HTML, tags generally serve two purpose; they both add structure to documents and imply a certain display style. It defines a new paragraphs and bold or italic and some certain display features. XML is exclusively not a language to define how things looks on output screen, but only define specific contents. its a language to defining what rather than how.]]></description>
		<wfw:commentRss>http://www.tech99.us/2009/12/what-is-xml-is-not/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

