<?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>SCJP Certification &#187; Uncategorized</title>
	<atom:link href="http://www.scjp-certification.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.scjp-certification.com</link>
	<description>Sun Certified Java Programmer Certification exam essentials</description>
	<lastBuildDate>Fri, 30 Sep 2011 05:54:18 +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>WonderFALL news &amp; savings from uCertify!!!!</title>
		<link>http://www.scjp-certification.com/wonderfall-news-savings-from-ucertify.html</link>
		<comments>http://www.scjp-certification.com/wonderfall-news-savings-from-ucertify.html#comments</comments>
		<pubDate>Thu, 29 Sep 2011 05:36:06 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1071</guid>
		<description><![CDATA[WonderFALL news &#038; savings from uCertify!!!! Fall into crisp, cool autumn savings with uCertify ! This offer is available for...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwonderfall-news-savings-from-ucertify.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwonderfall-news-savings-from-ucertify.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>WonderFALL news &#038; savings from uCertify!!!!</p>
<p>Fall into crisp, cool autumn savings with uCertify !</p>
<p>This offer is available for the first 100 customers only. Be one of the first to buy any of our PrepKits and get the ONLINE version absolutely FREE! Access the PrepKit from any computer, your iPhone or iPad! How COOL is that?!</p>
<p>Choose from over 300 test prep software for CompTIA, Microsoft, Oracle, IBM, Cisco, CCNA &#038; many more. Nobody beats our breadth and depth of experience.</p>
<p>Buy our PrepKits and Save upto 50%! And yes, get the online and mobile versions absolutely FREE!</p>
<p>http://www.ucertify.me</p>
<p>Simply sign up or login with your existing account and add the Prepkit of your choice and and access it from anywhere. You can add your license information from this link</p>
<p>http://www.ucertify.me/myprofile.php?func=mylicense</p>
<p>iPhone and iPad users signup to http://learn.ucertify.com or login with your existing account and add the Prepkit of your choice and and access it from your iPhone and iPad. You can add your license information from this link</p>
<p>http://learn.ucertify.com/myprofile.php?func=mylicense</p>
<p>Click here now to Save : uCertify’s WonderFALL Sale!</p>
<p>Happy Shopping &#038; Happy Learning!</p>
<p>Your uCertify Team</p>
<p>http://www.ucertify.com</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwonderfall-news-savings-from-ucertify.html&amp;title=WonderFALL%20news%20%26%23038%3B%20savings%20from%20uCertify%21%21%21%21"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/wonderfall-news-savings-from-ucertify.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is constructor overloading?</title>
		<link>http://www.scjp-certification.com/what-is-constructor-overloading.html</link>
		<comments>http://www.scjp-certification.com/what-is-constructor-overloading.html#comments</comments>
		<pubDate>Tue, 20 Sep 2011 05:47:58 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1087</guid>
		<description><![CDATA[Constructor overloading is a technique in Java in which a class can have any number of constructors that differ in...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-constructor-overloading.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-constructor-overloading.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Constructor overloading is a technique in Java in which a class can have any number of constructors that differ in parameter lists. A constructor uses its arguments to initialize the new object&#8217;s state. The compiler differentiates these constructors by taking into account the number of parameters in the list and their types.  </p>
<p>As constructors are not members of a class, they are not inherited by subclasses. Therefore, each of the subclasses must specifically implement any constructors it needs. However, a subclass can use the constructors of its superclass by using the super keyword.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-constructor-overloading.html&amp;title=What%20is%20constructor%20overloading%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-constructor-overloading.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the lowerKey() method?</title>
		<link>http://www.scjp-certification.com/what-is-the-lowerkey-method.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-lowerkey-method.html#comments</comments>
		<pubDate>Tue, 30 Aug 2011 11:34:20 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1069</guid>
		<description><![CDATA[The lowerKey(k) method of the NavigableMap interface returns the greatest key in the map strictly less than k. It returns...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-lowerkey-method.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-lowerkey-method.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The lowerKey(k) method of the NavigableMap interface returns the greatest key in the map strictly less than k. It returns a null value if no such key is found. The lowerKey(k) method throws the ClassCastException if the specified key cannot be compared with the keys currently in the map. It throws the NullPointerException if the specified key is null and the map does not permit null keys</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-lowerkey-method.html&amp;title=What%20is%20the%20lowerKey%28%29%20method%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-lowerkey-method.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the lowerEntry() method?</title>
		<link>http://www.scjp-certification.com/what-is-the-lowerentry-method.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-lowerentry-method.html#comments</comments>
		<pubDate>Mon, 29 Aug 2011 11:33:33 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1067</guid>
		<description><![CDATA[The lowerEntry(k) method of the NavigableMap interface returns a key value pair with the greatest key in the map strictly...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-lowerentry-method.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-lowerentry-method.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The lowerEntry(k) method of the NavigableMap interface returns a key value pair with the greatest key in the map strictly less than k. It returns a null value if no such key is found. The lowerEntry(k) method throws the ClassCastException if the specified key cannot be compared with the keys currently in the map. It throws the NullPointerException if the specified key is null and this map does not permit null keys</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-lowerentry-method.html&amp;title=What%20is%20the%20lowerEntry%28%29%20method%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-lowerentry-method.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the descendingMap() method?</title>
		<link>http://www.scjp-certification.com/what-is-the-descendingmap-method-2.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-descendingmap-method-2.html#comments</comments>
		<pubDate>Sun, 28 Aug 2011 11:31:32 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1063</guid>
		<description><![CDATA[The descendingMap() method of the NavigableMap interface returns a navigable map according to the descending order of keys. This method...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-descendingmap-method-2.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-descendingmap-method-2.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The descendingMap() method of the NavigableMap interface returns a navigable map according to the descending order of keys. This method returns a map that is similar to the result of the Collections.reverseOrder(comparator()) method. The expression m.descendingMap().descendingMap() returns a map exactly equal to map m.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-descendingmap-method-2.html&amp;title=What%20is%20the%20descendingMap%28%29%20method%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-descendingmap-method-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the descendingKeySet() method?</title>
		<link>http://www.scjp-certification.com/what-is-the-descendingkeyset-method.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-descendingkeyset-method.html#comments</comments>
		<pubDate>Fri, 26 Aug 2011 11:32:42 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1065</guid>
		<description><![CDATA[The descendingKeySet() method of the NavigableMap interface returns a navigable set according to the descending order of keys in the...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-descendingkeyset-method.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-descendingkeyset-method.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The descendingKeySet() method of the NavigableMap interface returns a navigable set according to the descending order of keys in the map. The navigable set obtained as a result of the descendingKeySet() method supports element removal via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. However, it does not support the add and addAll operations</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-descendingkeyset-method.html&amp;title=What%20is%20the%20descendingKeySet%28%29%20method%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-descendingkeyset-method.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the File class?</title>
		<link>http://www.scjp-certification.com/what-is-the-file-class.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-file-class.html#comments</comments>
		<pubDate>Fri, 26 Aug 2011 11:30:29 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1061</guid>
		<description><![CDATA[The File class is an abstract class used for file operations such as creating empty files, deleting files, searching for...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-file-class.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-file-class.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The File class is an abstract class used for file operations such as creating empty files, deleting files, searching for a file in a directory, making directories, etc. It does not contain any method to read or write data from a file. The File class extends the Object class and implements the Serializable and Comparable interfaces.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-file-class.html&amp;title=What%20is%20the%20File%20class%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-file-class.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the FileReader class?</title>
		<link>http://www.scjp-certification.com/what-is-the-filereader-class.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-filereader-class.html#comments</comments>
		<pubDate>Thu, 25 Aug 2011 11:27:02 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1057</guid>
		<description><![CDATA[The FileReader class provides methods for reading character files. It contains methods for reading a single character, a fixed number...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-filereader-class.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-filereader-class.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The FileReader class provides methods for reading character files. It contains methods for reading a single character, a fixed number of characters, or a whole stream of characters. Since these classes do not provide fast performance, they are usually wrapped within high-level reader objects such as a BufferedReader</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-filereader-class.html&amp;title=What%20is%20the%20FileReader%20class%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-filereader-class.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the BufferedWriter class?</title>
		<link>http://www.scjp-certification.com/what-is-the-bufferedwriter-class.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-bufferedwriter-class.html#comments</comments>
		<pubDate>Tue, 23 Aug 2011 11:29:09 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1059</guid>
		<description><![CDATA[The BufferedWriter class is used for fast writing operations of texts to a character-output stream. It can be used to...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-bufferedwriter-class.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-bufferedwriter-class.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The BufferedWriter class is used for fast writing operations of texts to a character-output stream. It can be used to write single characters, arrays, and strings of data. The size of buffer may or may not be specified. The BufferedWriter class has the newLine() method that is used to create platform-specific line separators, as some platforms do not support the new line character (&#8216;\n&#8217;) to terminate lines.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-bufferedwriter-class.html&amp;title=What%20is%20the%20BufferedWriter%20class%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-bufferedwriter-class.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the BufferedReader class?</title>
		<link>http://www.scjp-certification.com/what-is-the-bufferedreader-class.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-bufferedreader-class.html#comments</comments>
		<pubDate>Mon, 22 Aug 2011 11:26:10 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1055</guid>
		<description><![CDATA[The BufferedReader class is used for fast reading operations of texts from a character-input stream. It can be used to...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-bufferedreader-class.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-bufferedreader-class.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The BufferedReader class is used for fast reading operations of texts from a character-input stream. It can be used to read single characters, arrays, and lines of data. The size of buffer may or may not be specified. The readLine() method of the BufferedReader class can be used to get the next line of characters from a file, and the skip(long n) method can be used to skip n number of characters.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-bufferedreader-class.html&amp;title=What%20is%20the%20BufferedReader%20class%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-bufferedreader-class.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the PrintWriter class?</title>
		<link>http://www.scjp-certification.com/what-is-the-printwriter-class.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-printwriter-class.html#comments</comments>
		<pubDate>Thu, 18 Aug 2011 11:24:51 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1053</guid>
		<description><![CDATA[The PrintWriter class extends the Writer class and implements the Closeable, Flushable, and Appendable interfaces. It is used for writing...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-printwriter-class.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-printwriter-class.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The PrintWriter class extends the Writer class and implements the Closeable, Flushable, and Appendable interfaces. It is used for writing multiple-byte character sets and formatted representations of objects to a text-output stream. Methods in this class do not throw I/O exceptions</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-printwriter-class.html&amp;title=What%20is%20the%20PrintWriter%20class%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-printwriter-class.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>uCertify’s Back 2 School Sale – Save upto 50%!</title>
		<link>http://www.scjp-certification.com/ucertify%e2%80%99s-back-2-school-sale-%e2%80%93-save-upto-50.html</link>
		<comments>http://www.scjp-certification.com/ucertify%e2%80%99s-back-2-school-sale-%e2%80%93-save-upto-50.html#comments</comments>
		<pubDate>Thu, 18 Aug 2011 04:51:20 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1035</guid>
		<description><![CDATA[Do you have the right tools to get ahead this new school year? Earn more, do more, with an IT...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fucertify%25e2%2580%2599s-back-2-school-sale-%25e2%2580%2593-save-upto-50.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fucertify%25e2%2580%2599s-back-2-school-sale-%25e2%2580%2593-save-upto-50.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Do you have the right tools to get ahead this new school year? Earn more, do more, with an IT certification. Get certified – no matter if you are a fresh high school grad or in college or an IT professional. IT certifications help you stand out. Class shows. Let your credential do the talking. </p>
<p>For a limited time only, uCertify is offering a humongous discount of upto 50% ! Check out the offer!</p>
<p>Choose from over 300 test prep software for CompTIA, Microsoft, Oracle, IBM, Cisco, CCNA &#038; many more. Nobody beats our breadth and depth of experience.</p>
<p>uCertify – the fastest way to IT certification with the right tools and the right price. It’s quite simply, the right thing to do.</p>
<p><a href="https://www.ucertify.com/cart/selectadeal.php">Click here now to Save : uCertify’s Back 2 School Sale!</a></p>
<p>Hurry! Sale runs 8/17 through 8/25 only! </p>
<p>Happy Shopping &#038; Happy Learning!</p>
<p>Your uCertify Team</p>
<p>http://www.ucertify.com</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fucertify%25e2%2580%2599s-back-2-school-sale-%25e2%2580%2593-save-upto-50.html&amp;title=uCertify%E2%80%99s%20Back%202%20School%20Sale%20%E2%80%93%20Save%20upto%2050%25%21"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/ucertify%e2%80%99s-back-2-school-sale-%e2%80%93-save-upto-50.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is contructor overloading?</title>
		<link>http://www.scjp-certification.com/what-is-contructor-overloading.html</link>
		<comments>http://www.scjp-certification.com/what-is-contructor-overloading.html#comments</comments>
		<pubDate>Mon, 15 Aug 2011 11:23:45 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1051</guid>
		<description><![CDATA[Constructor overloading is a technique in Java in which a class can have any number of constructors that differ in...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-contructor-overloading.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-contructor-overloading.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Constructor overloading is a technique in Java in which a class can have any number of constructors that differ in parameter lists. A constructor uses its arguments to initialize the new object&#8217;s state. The compiler differentiates these constructors by taking into account the number of parameters in the list and their types. </p>
<p>As constructors are not members of a class, they are not inherited by subclasses. Therefore, each of the subclasses must specifically implement any constructors it needs. However, a subclass can use the constructors of its superclass by using the super keyword.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-contructor-overloading.html&amp;title=What%20is%20contructor%20overloading%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-contructor-overloading.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the Console class?</title>
		<link>http://www.scjp-certification.com/what-is-the-console-class-2.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-console-class-2.html#comments</comments>
		<pubDate>Sat, 13 Aug 2011 11:16:29 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1049</guid>
		<description><![CDATA[The Console class extends the Object class and has convenience methods to read from and write to the console objects....]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-console-class-2.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-console-class-2.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The Console class extends the Object class and has convenience methods to read from and write to the console objects. Also, it has the readPassword() method to read a password from the console. If the underlying virtual machine has a console, it can be obtained by invoking the System.console() method. If no console device is available, then an invocation of the System.console() method returns null.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-console-class-2.html&amp;title=What%20is%20the%20Console%20class%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-console-class-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the readPassword() method?</title>
		<link>http://www.scjp-certification.com/what-is-the-readpassword-method-2.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-readpassword-method-2.html#comments</comments>
		<pubDate>Mon, 08 Aug 2011 11:15:28 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1047</guid>
		<description><![CDATA[The readPassword() method of the Console class is used to read a password from the underlying console. This method does...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-readpassword-method-2.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-readpassword-method-2.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The readPassword() method of the Console class is used to read a password from the underlying console. This method does not read any line-termination character. It returns null if an end of stream has been reached. There are two syntaxes for the readPassword() method as follows:</p>
<p>public char[] readPassword(): This method is used to read passwords from a console with echoing enabled.</p>
<p>public char[] readPassword(String fmt, Object&#8230; args): This method is used to read passwords from a console with echoing enabled in the given format.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-readpassword-method-2.html&amp;title=What%20is%20the%20readPassword%28%29%20method%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-readpassword-method-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are the data type conversions available in Java?</title>
		<link>http://www.scjp-certification.com/what-are-the-data-type-conversions-available-in-java.html</link>
		<comments>http://www.scjp-certification.com/what-are-the-data-type-conversions-available-in-java.html#comments</comments>
		<pubDate>Mon, 08 Aug 2011 11:09:32 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1039</guid>
		<description><![CDATA[Java provides two kinds of data type conversions, namely automatic and explicit. Automatic conversion takes place when the following two...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-data-type-conversions-available-in-java.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-data-type-conversions-available-in-java.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Java provides two kinds of data type conversions, namely automatic and explicit. Automatic conversion takes place when the following two conditions are fulfilled:</p>
<ul>
<li>The two types are compatible. </li>
<li>The destination type is larger than the source type. </li>
</ul>
<p>When these two conditions are met, widening conversion takes place, i.e., a narrow data type is promoted to a wider one. For example, the value of byte type will be promoted to int, as int is wider than byte in width. However, in many cases, an automatic conversion cannot be performed.  For example, an automatic conversion cannot be performed to convert int to byte, as int is wider than byte. In such cases, conversion is performed explicitly. The general form to perform such type of narrowing conversion is as follows:</p>
<p>(target-type) value</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-data-type-conversions-available-in-java.html&amp;title=What%20are%20the%20data%20type%20conversions%20available%20in%20Java%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-are-the-data-type-conversions-available-in-java.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the main() method?</title>
		<link>http://www.scjp-certification.com/what-is-the-main-method.html</link>
		<comments>http://www.scjp-certification.com/what-is-the-main-method.html#comments</comments>
		<pubDate>Wed, 03 Aug 2011 11:12:50 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1044</guid>
		<description><![CDATA[The main() method is the entry point for Java applications. The interpreter starts the execution of the program from the...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-main-method.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-main-method.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The main() method is the entry point for Java applications. The interpreter starts the execution of the program from the main() method. A Java application can have any number of classes, but only one of them includes the main() method that initiates the execution.</p>
<p>The signatures for the main() method are as follows:
<ul>
<li>public static void main (String args[])</li>
<li> public static void main (String[] args) </li>
<li>public static void main (String []args)</li>
<li>public static void main (String args)</li>
</ul>
<p>where the keyword public is an access specifier that declares the main() method as unprotected, making it accessible to all other classes.</p>
<p>The keyword static makes the method static, so that it may be executed without constructing an instance of the corresponding class.</p>
<p>The args array contains an argument that the user might enter on the command line.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-the-main-method.html&amp;title=What%20is%20the%20main%28%29%20method%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-the-main-method.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is inheritance?</title>
		<link>http://www.scjp-certification.com/what-is-inheritance.html</link>
		<comments>http://www.scjp-certification.com/what-is-inheritance.html#comments</comments>
		<pubDate>Mon, 01 Aug 2011 11:09:30 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1038</guid>
		<description><![CDATA[Inheritance is a process through which a class inherits the properties of another class. An inheritance is a relationship that...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-inheritance.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-inheritance.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Inheritance is a process through which a class inherits the properties of another class. An inheritance is a relationship that can be created by extending a class in Java. A class inherits general attributes from its parent class, and adds those qualities that make it unique within the class. </p>
<p>Inheritance is used mainly for the following purposes: </p>
<ul>
<li>Code reuse</li>
<li>Polymorphism </li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-inheritance.html&amp;title=What%20is%20inheritance%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-inheritance.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are Web Services?</title>
		<link>http://www.scjp-certification.com/what-are-web-services.html</link>
		<comments>http://www.scjp-certification.com/what-are-web-services.html#comments</comments>
		<pubDate>Sat, 30 Jul 2011 09:06:05 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1016</guid>
		<description><![CDATA[A Web service is defined by W3C as a software system designed to support interoperable machine-to-machine interaction over a network....]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-web-services.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-web-services.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A Web service is defined by W3C as a software system designed to support interoperable machine-to-machine interaction over a network. Following are the two types of Web services:
<ol>
<li><uc:hed>Simple Web Service: </uc:hed>It provides a request/response type of functionality and does not support transactions. It has the following characteristics:
<ol>
<li>Point to point</li>
<li>RPC and messaging based: It involves calling of a remote procedure and uses XML messaging.</li>
<li>Non-transactional: It involves a simple request followed by a response to the client.</li>
<li>Web security</li>
</ol>
</li>
<li>Complex Web Service: It provides the framework for business-to-business collaborations and business process management. It acquires the following characteristics:
<ol>
<li>Multi-party: It involves multiple business partners.</li>
<li>Collaboration and workflow</li>
<li>Transactional: All services run under transactional control spanning servers.</li>
<li>Sophisticated security: It uses digital signatures for authentication and access control.</li>
<li>Conversation state: It maintains a conversation state with the client, obtains the context, and shares it with collaborators.</li>
</ol>
</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-web-services.html&amp;title=What%20are%20Web%20Services%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-are-web-services.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a Web Service?</title>
		<link>http://www.scjp-certification.com/what-is-a-web-service.html</link>
		<comments>http://www.scjp-certification.com/what-is-a-web-service.html#comments</comments>
		<pubDate>Fri, 29 Jul 2011 09:06:02 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1015</guid>
		<description><![CDATA[A Web service is a unit of application logic that can be accessible via standard protocols. A Web service is...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-a-web-service.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-a-web-service.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A Web service is a unit of application logic that can be accessible via standard protocols. A Web service is defined by the W3C as a software system designed to support interoperable machine-to-machine interaction over a network. Web services are frequently just Web APIs that can be accessed over a network, such as the Internet, and executed on a remote system hosting the requested services. Remote clients use XML for data transport and SOAP for using services.</p>
<p>A Web service must have the following characteristics:
<ol>
<li>It must be registered with a central repository so that the client can look up it for a desired service.</li>
<li>It contains a public interface for the client to invoke services.</li>
<li>It should use standard protocols for communication.</li>
<li>It should be accessible over the Web.</li>
<li>It should support loose coupling with distributed systems so that the system running on different technologies can cooperate with each other.</li>
</ol>
<p>The W3C Web service definition encompasses many different systems, but in common usage, the term refers to clients and servers that communicate over the HTTP protocol used on the Web. Such services tend to fall into one of two camps: Big Web Services and RESTful Web Services. Big Web Services use XML messages that follow the SOAP standard and have been popular with traditional enterprise. RESTful Web services have been regaining popularity, particularly with Internet companies. These also meet the W3C definition, and are often better integrated with HTTP than SOAP-based services.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-a-web-service.html&amp;title=What%20is%20a%20Web%20Service%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-a-web-service.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is UDDI?</title>
		<link>http://www.scjp-certification.com/what-is-uddi.html</link>
		<comments>http://www.scjp-certification.com/what-is-uddi.html#comments</comments>
		<pubDate>Thu, 28 Jul 2011 09:05:59 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1014</guid>
		<description><![CDATA[Universal Description, Discovery and Integration (UDDI) is a platform-independent, XML-based registry for businesses worldwide to list themselves on the Internet....]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-uddi.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-uddi.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Universal Description, Discovery and Integration (UDDI) is a platform-independent, XML-based registry for businesses worldwide to list themselves on the Internet. UDDI is an open industry initiative, sponsored by OASIS, enabling businesses to publish service listings and discover each other and define how the services or software applications interact over the Internet. A UDDI business registration consists of three components:</p>
<p>White Pages   address, contact, and known identifiers.<br />
Yellow Pages   industrial categorizations based on standard taxonomies.<br />
Green Pages   technical information about services exposed by the business.</p>
<p>UDDI was originally proposed as a core Web service standard. It is designed to be interrogated by SOAP messages and to provide access to Web Services Description Language documents describing the protocol bindings and message formats required to interact with the Web services listed in its directory.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-is-uddi.html&amp;title=What%20is%20UDDI%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-is-uddi.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are the improvements of WSDL 1.2 over WSDL 1.1?</title>
		<link>http://www.scjp-certification.com/what-are-the-improvements-of-wsdl-1-2-over-wsdl-1-1.html</link>
		<comments>http://www.scjp-certification.com/what-are-the-improvements-of-wsdl-1-2-over-wsdl-1-1.html#comments</comments>
		<pubDate>Mon, 25 Jul 2011 09:05:56 +0000</pubDate>
		<dc:creator>Daisy Williams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.scjp-certification.com/?p=1013</guid>
		<description><![CDATA[The Web Services Description Language is an XML-based language that provides a model for describing Web services. The current version...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-improvements-of-wsdl-1-2-over-wsdl-1-1.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-improvements-of-wsdl-1-2-over-wsdl-1-1.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The Web Services Description Language is an XML-based language that provides a model for describing Web services. The current version of the specification is 2.0; version 1.1 has not been endorsed by the W3C, but version 2.0 is a W3C recommendation. WSDL 1.2 was renamed WSDL 2.0 because of its substantial differences from WSDL 1.1. By accepting binding to the HTTP request methods (not only GET and POST as in version 1.1), WSDL 2.0 specification offers better support for restful web services, and is much simpler to implement. According to W3C, WSDL 1.2 is easier and more flexible for developers than the previous version. WSDL 1.2 attempts to remove non-interoperable features and has also defined the better HTTP 1.1 binding. WSDL 1.2 was not supported by most of the SOAP servers/vendors. </p>
<p>WSDL 1.2 was actually renamed to WSDL 2.0 because it had substantial differences with WSDL 1.1. The improvements are as follows: </p>
<li>Adding further semantics to the description language</li>
<li>Removal of message constructs</li>
<li>No support for operator overloading</li>
<li>PortTypes renamed to interfaces</li>
<li>Ports renamed to endpoints</li>
<li>Language clarifications</li>
<li>Support for W3C Recommendations, including XML Schemas and XML Information Set</li>
<li>The removal of unnecessary and non-interoperable features</li>
<li>A better definition of HTTP 1.1 binding</li>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.scjp-certification.com%2Fwhat-are-the-improvements-of-wsdl-1-2-over-wsdl-1-1.html&amp;title=What%20are%20the%20improvements%20of%20WSDL%201.2%20over%20WSDL%201.1%3F"><img src="http://www.scjp-certification.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.scjp-certification.com/what-are-the-improvements-of-wsdl-1-2-over-wsdl-1-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

