<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://jyog.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>jYog.com - Java articles, Java tutorials, j2ee tutorials, Java community news</title>
 <link>http://jyog.com</link>
 <description></description>
 <language>en</language>
<item>
 <title>Tomcat 6.0 comet support and asynchronous servlets</title>
 <link>http://jyog.com/articles/tomcat_comet_support_asynchronous_servlets.html</link>
 <description>&lt;p&gt;Comet support allows a servlet to process IO asynchronously, recieving events when data is available for reading on the connection , and writing data back on connections asynchronously.&lt;/p&gt;
&lt;p&gt;Comet applications can deliver data to the client at any time, not only in response to user input. The data is delivered over a single, previously-opened connection. This approach reduces the latency for data delivery significantly.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Tomcat 6.0 comet support&lt;/strong&gt;&lt;/p&gt;
&lt;li&gt;&lt;strong&gt;CometEvent&lt;/strong&gt;&lt;/li&gt;
&lt;p&gt;&lt;a href=&quot;http://jyog.com/articles/tomcat_comet_support_asynchronous_servlets.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://jyog.com/articles/tomcat_comet_support_asynchronous_servlets.html#comments</comments>
 <category domain="http://jyog.com/articles">Articles</category>
 <pubDate>Sun, 09 Sep 2007 04:52:08 -0500</pubDate>
 <dc:creator>sudhir_nimavat</dc:creator>
 <guid isPermaLink="false">8 at http://jyog.com</guid>
</item>
<item>
 <title>New Features In Servlet 3.0 - JSR 315</title>
 <link>http://jyog.com/articles/servlet3.0_new_features.html</link>
 <description>Proposed New Features Of Servlet 3.0 - JSR 315
&lt;/br&gt;
&lt;/br&gt;
&lt;li&gt;&lt;h4&gt;Web framework pluggability.&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Almost all of the Java based web frameworks build on top of servlets. Most web frameworks today plugin either through servlets or through web.xml. Annotations to define some of the servlets, listeners, filters will help in making this possible. Programatic access to web.xml and dynamic changes to configuration of a webapp are desired features. This JSR will aim to provide the ability to seamlessly plugin different web frameworks into web appplications. 
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://jyog.com/articles/servlet3.0_new_features.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://jyog.com/articles/servlet3.0_new_features.html#comments</comments>
 <category domain="http://jyog.com/articles">Articles</category>
 <pubDate>Mon, 03 Sep 2007 09:20:28 -0500</pubDate>
 <dc:creator>sudhir_nimavat</dc:creator>
 <guid isPermaLink="false">7 at http://jyog.com</guid>
</item>
<item>
 <title>Whats coming up in Java SE 7</title>
 <link>http://jyog.com/articles/java7_new_features.html</link>
 <description>&lt;p&gt;Summary Of Proposed JSRs for Java SE 7 Platform&lt;/p&gt;
&lt;p&gt;JSR 277: Java Module System&lt;/p&gt;
&lt;p&gt;JSR 294: Improved modularity support in the Java programming language&lt;/p&gt;
&lt;p&gt;JSR 295: Beans binding&lt;/p&gt;
&lt;p&gt;JSR 303: Bean validation&lt;/p&gt;
&lt;p&gt;JSR 292: Supporting Dynamically Typed Languages&lt;/p&gt;
&lt;p&gt;JSR 296: Swing application framework&lt;/p&gt;
&lt;p&gt;JSR 203: More new I/ O APIs for the Java Platform (NIO.2)&lt;/p&gt;
&lt;p&gt;JSR 220: Enterprise JavaBeans™ 3.0&lt;/p&gt;
&lt;p&gt;JSR 255: JMX specification, version 2.0&lt;/p&gt;
&lt;p&gt;JSR 262: Web services connector for JMX agents&lt;/p&gt;
&lt;p&gt;JSR 260: Javadoc™ Tag Technology Update&lt;/p&gt;
&lt;p&gt;JSR(s) TBD Java Language changes&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://jyog.com/articles/java7_new_features.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://jyog.com/articles/java7_new_features.html#comments</comments>
 <category domain="http://jyog.com/articles">Articles</category>
 <pubDate>Sat, 01 Sep 2007 04:58:02 -0500</pubDate>
 <dc:creator>sudhir_nimavat</dc:creator>
 <guid isPermaLink="false">6 at http://jyog.com</guid>
</item>
<item>
 <title>Article : Named Parameters for PreparedStatement</title>
 <link>http://jyog.com/Named_Parameters_for_PreparedStatement</link>
 <description>&lt;p&gt;Adam Crume has written &lt;a href=&quot;http://www.javaworld.com/javaworld/jw-04-2007/jw-04-jdbc.html&quot;&gt; Named Parameters for PreparedStatement &lt;/a&gt; for JavaWorld.com. He has developed a custom JDBC statement called NamedParameterStatement.&lt;/p&gt;
&lt;p&gt;In past if you have worked with JDBC than you may know that keeping track of the indices of PreparedStatement is very difficult for larger queries having tens of parameters.&lt;br /&gt;
If you needs to insert or delete a parameter in the middle of a query, you must renumber all the parameters following it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://jyog.com/Named_Parameters_for_PreparedStatement&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://jyog.com/Named_Parameters_for_PreparedStatement#comments</comments>
 <category domain="http://jyog.com/articles">Articles</category>
 <pubDate>Sat, 04 Aug 2007 06:45:52 -0500</pubDate>
 <dc:creator>sudhir_nimavat</dc:creator>
 <guid isPermaLink="false">3 at http://jyog.com</guid>
</item>
<item>
 <title>Why Java hosting costs so much?</title>
 <link>http://jyog.com/why_java_hosting_costs_so_much</link>
 <description>&lt;p&gt;First question, which may arise in your mind is ,despite of being a Java developer &amp;amp; a big fan of Java, why have I hosted my own site on a php host?. The only reason is cost.Java is too much costly when it comes to hosting a privately-held/budget-aware website, now days hosting a site is a matter of around 1.5 to 6 dollar, but its for php or .Net not for Java,One could get a fairly good shared hosting package for around 1.5-6$ per month for php .Net, but when it comes to Java, its unbelivable.&lt;/p&gt;
&lt;p&gt;Why so?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://jyog.com/why_java_hosting_costs_so_much&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://jyog.com/why_java_hosting_costs_so_much#comments</comments>
 <category domain="http://jyog.com/articles">Articles</category>
 <pubDate>Wed, 01 Aug 2007 05:41:55 -0500</pubDate>
 <dc:creator>sudhir_nimavat</dc:creator>
 <guid isPermaLink="false">2 at http://jyog.com</guid>
</item>
</channel>
</rss>
