<?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>Java Interview Questions &#187; Session Interview Questions</title>
	<atom:link href="http://www.bestjavainterviewquestions.com/category/session-interview-questions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bestjavainterviewquestions.com</link>
	<description>Java Interview Questions &#124; Core Java Interview Questions &#124; Advanced Java Interview Questions &#124; EJB Interview Questions &#124; J2EE Interview Questions &#124; Hibernate Interview Questions</description>
	<lastBuildDate>Fri, 03 Feb 2012 10:23:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Define Session Hijacking</title>
		<link>http://www.bestjavainterviewquestions.com/define-session-hijacking-3/</link>
		<comments>http://www.bestjavainterviewquestions.com/define-session-hijacking-3/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 17:21:17 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>
		<category><![CDATA[session hijacking]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=263</guid>
		<description><![CDATA[Question: What is session hijacking? Answer: If you application is not very secure then it is possible to get the access of system after acquiring or generating the authentication information. Session hijacking refers to the act of taking control of a user session after successfully obtaining or generating an authentication session ID. It involves an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Question: What is session hijacking?<br />
Answer:</strong> If you application is not very secure then it is possible to get the access of system after acquiring or generating the authentication information. Session hijacking refers to the act of taking control of a user session after successfully obtaining or generating an authentication session ID. It involves an attacker using captured, brute forced or reverse-engineered session IDs to get a control of a legitimate user&#8217;s Web application session while that session is still in progress.</p>
<h2  class="related_post_title">Related Post</h2><ul class="related_post"><li>September 2, 2008 -- <a href="http://www.bestjavainterviewquestions.com/define-session-hijacking/" title="Define Session Hijacking">Define Session Hijacking</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/define-session-hijacking-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between session.save() , session.saveOrUpdate() and session.persist()</title>
		<link>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-sessionsaveorupdate-and-sessionpersist-2/</link>
		<comments>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-sessionsaveorupdate-and-sessionpersist-2/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 17:20:07 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>
		<category><![CDATA[session.save()]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=231</guid>
		<description><![CDATA[Q) Difference between session.save() , session.saveOrUpdate() and session.persist()? A) &#8211;&#62; session.save() : Save does an insert and will fail if the primary key is already persistent. &#8211;&#62; session.saveOrUpdate() : saveOrUpdate does a select first to determine if it needs to do an insert or an update. Insert data if primary key not exist otherwise update [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Q) Difference between session.save() , session.saveOrUpdate() and session.persist()?<br />
A)</strong><br />
<strong>&#8211;&gt; </strong>session.save() : Save does an insert and will fail if the primary key is already persistent.</p>
<p><strong>&#8211;&gt; </strong>session.saveOrUpdate() : saveOrUpdate does a select first to determine if it needs to do an insert or an update.<br />
Insert data if primary key not exist otherwise update data.</p>
<p><strong>&#8211;&gt; </strong>session.persist() : Does the same like session.save().<br />
But session.save() return Serializable object but session.persist() return void.<br />
session.save() returns the generated identifier (Serializable object) and session.persist() doesn&#8217;t.<br />
<em>For Example :</em><br />
if you do :-<br />
System.out.println(session.save(question));<br />
This will print the generated primary key.<br />
if you do :-<br />
System.out.println(session.persist(question));<br />
Compile time error because session.persist() return void.</p>
<h2  class="related_post_title">Related Post</h2><ul class="related_post"><li>September 2, 2008 -- <a href="http://www.bestjavainterviewquestions.com/difference-between-sessionsave-sessionsaveorupdate-and-sessionpersist/" title="Difference between session.save() , session.saveOrUpdate() and session.persist()">Difference between session.save() , session.saveOrUpdate() and session.persist()</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-sessionsaveorupdate-and-sessionpersist-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between session.save() and session.saveOrUpdate()</title>
		<link>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-4/</link>
		<comments>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-4/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 17:19:52 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-4/</guid>
		<description><![CDATA[Difference between session.save() and session.saveOrUpdate()? session.save() &#8211; Insert data into the table session.saveOrUpdate()- Insert data if primary key not exist otherwise update Random PostsSeptember 22, 2008 -- What is JRE ? Explain (1)July 7, 2008 -- JSP Standard Questions (0)October 27, 2008 -- Benefits of Connection Pooling (0)June 23, 2008 -- JAVA UTIL PACKAGE (0)July [...]]]></description>
			<content:encoded><![CDATA[<p>Difference between session.save() and session.saveOrUpdate()?</p>
<p>session.save() &#8211; Insert data into the table<br />
session.saveOrUpdate()- Insert data if primary key not exist otherwise update</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li>July 15, 2008 -- <a href="http://www.bestjavainterviewquestions.com/springs-interview-questions-3/" title="Springs Interview Questions">Springs Interview Questions</a> (1)</li><li>June 17, 2008 -- <a href="http://www.bestjavainterviewquestions.com/awt-interview-questions-3/" title="AWT Interview Questions">AWT Interview Questions</a> (0)</li><li>August 9, 2008 -- <a href="http://www.bestjavainterviewquestions.com/applets-tutorial-with-some-important-methods/" title="How to use Applets">How to use Applets</a> (0)</li><li>August 15, 2008 -- <a href="http://www.bestjavainterviewquestions.com/main-exceptions-in-thread/" title="Main Exceptions in Thread">Main Exceptions in Thread</a> (0)</li><li>May 22, 2008 -- <a href="http://www.bestjavainterviewquestions.com/java-lang-package-interview-questions/" title="Java lang package interview questions">Java lang package interview questions</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between session.save() and session.saveOrUpdate()</title>
		<link>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-3/</link>
		<comments>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-3/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 17:19:37 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-3/</guid>
		<description><![CDATA[Q) Difference between session.save() and session.saveOrUpdate()? A) session.save() &#8211; Insert data into the table session.saveOrUpdate()- Insert data if primary key not exist otherwise update Random PostsAugust 9, 2008 -- How to use Applets (0)September 2, 2008 -- Explain Session tracking using Servlet (0)March 25, 2009 -- Creating a Stateful session Bean (1)September 20, 2008 -- [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Q) Difference between session.save() and session.saveOrUpdate()?<br />
A)</strong><br />
session.save() &#8211; Insert data into the table<br />
session.saveOrUpdate()- Insert data if primary key not exist otherwise update</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li>September 30, 2008 -- <a href="http://www.bestjavainterviewquestions.com/explain-thread-safe-jsp-page-and-there-advantages/" title="Explain Thread-Safe JSP page and there advantages">Explain Thread-Safe JSP page and there advantages</a> (0)</li><li>December 17, 2008 -- <a href="http://www.bestjavainterviewquestions.com/explain-stream-tokenizer/" title="Explain Stream Tokenizer">Explain Stream Tokenizer</a> (0)</li><li>December 17, 2008 -- <a href="http://www.bestjavainterviewquestions.com/when-the-port-number-is-changed/" title="When the port number is changed">When the port number is changed</a> (0)</li><li>March 24, 2009 -- <a href="http://www.bestjavainterviewquestions.com/define-hashset-class/" title="Define HashSet Class">Define HashSet Class</a> (0)</li><li>July 1, 2008 -- <a href="http://www.bestjavainterviewquestions.com/java-thread-interview-questions/" title="Java Thread Interview Questions">Java Thread Interview Questions</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between session.save() and session.saveOrUpdate()</title>
		<link>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-2/</link>
		<comments>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-2/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 17:19:16 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=248</guid>
		<description><![CDATA[Q) Difference between session.save() and session.saveOrUpdate()? A) session.save() &#8211; Insert data into the table session.saveOrUpdate()- Insert data if primary key not exist otherwise update Random PostsSeptember 2, 2008 -- Difference between session.save() and session.saveOrUpdate() (0)September 22, 2008 -- Difference between Print() and Println() Methods in Java (0)September 2, 2008 -- Difference between session.update() and session.lock() [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Q) Difference between session.save() and session.saveOrUpdate()?<br />
A)</strong><br />
session.save() &#8211; Insert data into the table<br />
session.saveOrUpdate()- Insert data if primary key not exist otherwise update</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li>August 9, 2008 -- <a href="http://www.bestjavainterviewquestions.com/applets-tutorial-with-some-important-methods/" title="How to use Applets">How to use Applets</a> (0)</li><li>October 4, 2008 -- <a href="http://www.bestjavainterviewquestions.com/what-is-jtapi/" title="What is JTAPI">What is JTAPI</a> (0)</li><li>September 20, 2008 -- <a href="http://www.bestjavainterviewquestions.com/310/" title="Hibernate Basics">Hibernate Basics</a> (0)</li><li>September 22, 2008 -- <a href="http://www.bestjavainterviewquestions.com/what-is-api/" title="What is API">What is API</a> (0)</li><li>July 7, 2008 -- <a href="http://www.bestjavainterviewquestions.com/java-rmi-interview-questions/" title="Java RMI Interview questions">Java RMI Interview questions</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Explain session destroy in Servlets</title>
		<link>http://www.bestjavainterviewquestions.com/explain-session-destroy-in-servlets/</link>
		<comments>http://www.bestjavainterviewquestions.com/explain-session-destroy-in-servlets/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 18:30:03 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>
		<category><![CDATA[session destroy in servlets]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=271</guid>
		<description><![CDATA[Question: How you can destroy the session in Servlet? Answer: You can call invalidate() method on the session object to destroy the session. e.g. session.invalidate(); Random PostsSeptember 16, 2008 -- Converting Hibernate with Eclipse Integration (0)June 6, 2008 -- Applet Interview Questions (0)July 24, 2008 -- JSF Important Questions (2)July 7, 2008 -- JSP Interview [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Question: How you can destroy the session in Servlet?<br />
Answer: </strong>You can call invalidate() method on the session object to destroy the session. e.g. session.invalidate();</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li>April 7, 2011 -- <a href="http://www.bestjavainterviewquestions.com/why-actionservlet-is-singleton-in-struts-framework/" title="Why ActionServlet is Singleton in struts framework?">Why ActionServlet is Singleton in struts framework?</a> (0)</li><li>June 23, 2008 -- <a href="http://www.bestjavainterviewquestions.com/19/" title="Java Basic Questions">Java Basic Questions</a> (1)</li><li>August 25, 2008 -- <a href="http://www.bestjavainterviewquestions.com/define-servletoutputstream/" title="Define ServletOutputStream">Define ServletOutputStream</a> (0)</li><li>August 24, 2008 -- <a href="http://www.bestjavainterviewquestions.com/define-session-bean-and-entity-bean/" title="Define Session Bean and Entity Bean">Define Session Bean and Entity Bean</a> (0)</li><li>October 16, 2008 -- <a href="http://www.bestjavainterviewquestions.com/dynamic-and-static-web-page/" title="Dynamic and Static Web Page">Dynamic and Static Web Page</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/explain-session-destroy-in-servlets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Explain Session tracking using Servlet</title>
		<link>http://www.bestjavainterviewquestions.com/explain-session-tracking-using-servlet/</link>
		<comments>http://www.bestjavainterviewquestions.com/explain-session-tracking-using-servlet/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 18:29:04 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[session tracking using servlet]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=269</guid>
		<description><![CDATA[Question: How to track a user session in Servlets? Answer: The interface HttpSession can be used to track the session in the Servlet. Following code can be used to create session object in the Servlet: HttpSession session = req.getSession(true); Related PostSeptember 30, 2008 -- Define Precompile of Jsp page (0)September 22, 2008 -- Calling a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Question: How to track a user session in Servlets?<br />
Answer:</strong> The interface HttpSession can be used to track the session in the Servlet. Following code can be used to create session object in the Servlet: HttpSession session = req.getSession(true);</p>
<h2  class="related_post_title">Related Post</h2><ul class="related_post"><li>September 30, 2008 -- <a href="http://www.bestjavainterviewquestions.com/define-precompile-of-jsp-page/" title="Define Precompile of Jsp page">Define Precompile of Jsp page</a> (0)</li><li>September 22, 2008 -- <a href="http://www.bestjavainterviewquestions.com/calling-a-method-in-java/" title="Calling a Method in Java">Calling a Method in Java</a> (1)</li><li>August 24, 2008 -- <a href="http://www.bestjavainterviewquestions.com/why-does-ejb-needs-two-interfaces/" title="Why does EJB needs two interfaces">Why does EJB needs two interfaces</a> (0)</li><li>August 24, 2008 -- <a href="http://www.bestjavainterviewquestions.com/define-nullpointerexception/" title="Define NullPointerException">Define NullPointerException</a> (0)</li><li>August 15, 2008 -- <a href="http://www.bestjavainterviewquestions.com/main-exceptions-in-thread/" title="Main Exceptions in Thread">Main Exceptions in Thread</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/explain-session-tracking-using-servlet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Define Session Migration</title>
		<link>http://www.bestjavainterviewquestions.com/define-session-migration/</link>
		<comments>http://www.bestjavainterviewquestions.com/define-session-migration/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 18:27:46 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>
		<category><![CDATA[session migration]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=267</guid>
		<description><![CDATA[Question: What is Session Migration? Answer: Session Migration is a mechanism of moving the session from one server to another in case of server failure. Session Migration can be implemented by: a) Persisting the session into database b) Storing the session in-memory on multiple servers. Random PostsOctober 4, 2008 -- What is JTAPI (0)August 15, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Question: What is Session Migration?<br />
Answer: </strong>Session Migration is a mechanism of moving the session from one server to another in case of server failure. Session Migration can be implemented by:<br />
a) Persisting the session into database<br />
b) Storing the session in-memory on multiple servers.</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li>October 16, 2008 -- <a href="http://www.bestjavainterviewquestions.com/servlets-and-jsps/" title="Servlets and Jsp&#8217;s">Servlets and Jsp&#8217;s</a> (0)</li><li>August 15, 2008 -- <a href="http://www.bestjavainterviewquestions.com/main-exceptions-in-thread/" title="Main Exceptions in Thread">Main Exceptions in Thread</a> (0)</li><li>April 7, 2011 -- <a href="http://www.bestjavainterviewquestions.com/why-actionservlet-is-singleton-in-struts-framework/" title="Why ActionServlet is Singleton in struts framework?">Why ActionServlet is Singleton in struts framework?</a> (0)</li><li>September 20, 2008 -- <a href="http://www.bestjavainterviewquestions.com/difference-between-sessionsave-and-sessionsaveorupdate-4/" title="Difference between session.save() and session.saveOrUpdate()">Difference between session.save() and session.saveOrUpdate()</a> (0)</li><li>September 20, 2008 -- <a href="http://www.bestjavainterviewquestions.com/310/" title="Hibernate Basics">Hibernate Basics</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/define-session-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Define Session Hijacking</title>
		<link>http://www.bestjavainterviewquestions.com/define-session-hijacking/</link>
		<comments>http://www.bestjavainterviewquestions.com/define-session-hijacking/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 18:26:52 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>
		<category><![CDATA[session hijacking]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=265</guid>
		<description><![CDATA[Question: What is session hijacking? Answer: If you application is not very secure then it is possible to get the access of system after acquiring or generating the authentication information. Session hijacking refers to the act of taking control of a user session after successfully obtaining or generating an authentication session ID. It involves an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Question: What is session hijacking?<br />
Answer:</strong> If you application is not very secure then it is possible to get the access of system after acquiring or generating the authentication information. Session hijacking refers to the act of taking control of a user session after successfully obtaining or generating an authentication session ID. It involves an attacker using captured, brute forced or reverse-engineered session IDs to get a control of a legitimate user&#8217;s Web application session while that session is still in progress.</p>
<h2  class="related_post_title">Related Post</h2><ul class="related_post"><li>September 20, 2008 -- <a href="http://www.bestjavainterviewquestions.com/define-session-hijacking-3/" title="Define Session Hijacking">Define Session Hijacking</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/define-session-hijacking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advantage of Cookies over URL</title>
		<link>http://www.bestjavainterviewquestions.com/advantage-of-cookies-over-url/</link>
		<comments>http://www.bestjavainterviewquestions.com/advantage-of-cookies-over-url/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 18:23:25 +0000</pubDate>
		<dc:creator>Ramakrishna</dc:creator>
				<category><![CDATA[Session Interview Questions]]></category>
		<category><![CDATA[cookies advantages over url]]></category>

		<guid isPermaLink="false">http://www.bestjavainterviewquestions.com/?p=261</guid>
		<description><![CDATA[Question: What are the advantage of Cookies over URL rewriting? Answer: Sessions tracking using Cookies are more secure and fast. Session tracking using Cookies can also be used with other mechanism of Session Tracking like url rewriting. Cookies are stored at client side so some clients may disable cookies so we may not sure that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Question: What are the advantage of Cookies over URL rewriting?<br />
Answer: </strong>Sessions tracking using Cookies are more secure and fast. Session tracking using Cookies can also be used with other mechanism of Session Tracking like url rewriting.</p>
<p>Cookies are stored at client side so some clients may disable cookies so we may not sure that the cookies may work or not.</p>
<p>In url  rewriting requites large data transfer from and to the server. So, it leads to network traffic and access may be become slow.</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li>December 17, 2008 -- <a href="http://www.bestjavainterviewquestions.com/define-multitasking-in-java/" title="Define MultiTasking in Java">Define MultiTasking in Java</a> (2)</li><li>May 22, 2008 -- <a href="http://www.bestjavainterviewquestions.com/java-lang-package-interview-questions/" title="Java lang package interview questions">Java lang package interview questions</a> (2)</li><li>July 24, 2008 -- <a href="http://www.bestjavainterviewquestions.com/jsf-important-questions/" title="JSF Important Questions">JSF Important Questions</a> (2)</li><li>May 22, 2008 -- <a href="http://www.bestjavainterviewquestions.com/basic-java-interview-question/" title="Basic Java Interview Question">Basic Java Interview Question</a> (1)</li><li>October 16, 2008 -- <a href="http://www.bestjavainterviewquestions.com/what-u-mean-by-web-application/" title="What u mean by Web Application">What u mean by Web Application</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.bestjavainterviewquestions.com/advantage-of-cookies-over-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

