<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.javaworld.com/community" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Community Discussion</title>
 <link>http://www.javaworld.com/community/discussion</link>
 <description>Feedback about JavaWorld&#039;s Daily Brew and Java Q&amp;A.</description>
 <language>en</language>
<item>
 <title>rewriting your product? </title>
 <link>http://www.javaworld.com/community/node/3860</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;* ... Fantastic idea, since we already know how to solve most of the problems we can do it much faster this time...&lt;br /&gt;
* ... As long as we don’t touch the spec, just migrate to a better technology...&lt;br /&gt;
* ... Only with a spec that includes new user stories ...&lt;br /&gt;
* ... Never rewrite your product ...&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/discussion&quot; class=&quot;og_links&quot;&gt;Community Discussion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/836">Enterprise Best Practices</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/1615">migration</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/1617">product management</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/1616">rewrite</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <pubDate>Sun, 27 Dec 2009 01:50:20 -0500</pubDate>
 <dc:creator>giladmanor</dc:creator>
 <guid isPermaLink="false">3860 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Why float type cast</title>
 <link>http://www.javaworld.com/community/node/8306</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;in java why float we has to be type cast i.e.  float a = (float)2.3; and and if 2.3 is consider as double then why there is a need for that ???&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/discussion&quot; class=&quot;og_links&quot;&gt;Community Discussion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/821">Core Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/89">java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/829">Java Programming Concepts</category>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <pubDate>Tue, 31 Jan 2012 07:10:53 -0500</pubDate>
 <dc:creator>parveen.gupta.23091987</dc:creator>
 <guid isPermaLink="false">8306 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Java AVL tree</title>
 <link>http://www.javaworld.com/community/node/8276</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hi i am making an AVL tree and i am having some problems in the search method, because a null exception error is given when the program is ran. Here is my code. Can you pls implement for me the search method so the program will run. Thanks in advance&lt;/p&gt;
&lt;p&gt;package testavltree;&lt;/p&gt;
&lt;p&gt;import java.io.IOException;&lt;br /&gt;
import javax.swing.JOptionPane;&lt;/p&gt;
&lt;p&gt;/**&lt;br /&gt;
 *&lt;br /&gt;
 * @author Rapapc&lt;br /&gt;
 */&lt;br /&gt;
public class TestAVLTree {&lt;/p&gt;
&lt;p&gt;    public static void main(String[] args) throws IOException, Exception {&lt;br /&gt;
        System.out.println(&quot;your inorder traversal is:&quot;);&lt;br /&gt;
        AVLarray process = new AVLarray(); &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/8276&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/corejava&quot; class=&quot;og_links&quot;&gt;Core Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/821">Core Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/857">How-To Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2364">Java Netbeans AVL tree</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <pubDate>Tue, 03 Jan 2012 07:42:12 -0500</pubDate>
 <dc:creator>mgau0047</dc:creator>
 <guid isPermaLink="false">8276 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Ballistic Line help</title>
 <link>http://www.javaworld.com/community/node/8251</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Okay so, here is what I have so far, I am constructing a program that will eventually take a user input angle and velocity and display the ballistic path of a notional projectile, sans friction and whatnot. &lt;/p&gt;
&lt;p&gt;I have yet to build the user defined variables, I am just trying to get the polyline to display in the frame with a pre-defined angle and velocity. Somewhere down the road I would like to animate this, but for right now I am just trying to make it display on a Canvas. &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/8251&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/corejava&quot; class=&quot;og_links&quot;&gt;Core Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2359">Graphics Beginner</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/823">Java Language</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <pubDate>Fri, 16 Dec 2011 07:59:29 -0500</pubDate>
 <dc:creator>mi_para</dc:creator>
 <guid isPermaLink="false">8251 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Gotfocus event</title>
 <link>http://www.javaworld.com/community/node/8248</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;when we use shift+tab the controls goes back and select the value in the field&lt;br /&gt;
how can we do the same programmically through java swing&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/discussion&quot; class=&quot;og_links&quot;&gt;Community Discussion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/829">Java Programming Concepts</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/828">Swing/GUI Programming</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <pubDate>Thu, 15 Dec 2011 07:56:52 -0500</pubDate>
 <dc:creator>sjohnfernandas</dc:creator>
 <guid isPermaLink="false">8248 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Database data doesn&#039;t fill into JTable</title>
 <link>http://www.javaworld.com/community/node/8244</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;I&#039;ve been working on this code for couple of days. My procedure on the database works fine but it doesn&#039;t fill into the table. I&#039;m going through the code again and again but I can&#039;t find what&#039;s wrong... The error I get is: JavaNullPointerException and the line involving is the piece of code that returns notes.length. Here&#039;s a piece of my code:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
private Object[][] notes = null;&lt;br /&gt;
setUpStatusColumn(noteTable, noteTable.getColumnModel().getColumn(2));&lt;/p&gt;
&lt;p&gt;protected JTable createTable(GradesModel gradesModel) {&lt;br /&gt;
        return new JTable(gradesModel);&lt;br /&gt;
    } &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/8244&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/corejava&quot; class=&quot;og_links&quot;&gt;Core Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2357">abstracttablemodel</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/860">Java Q&amp;amp;A</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2356">jtable</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2358">nullpointer</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/828">Swing/GUI Programming</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <pubDate>Tue, 13 Dec 2011 02:09:07 -0500</pubDate>
 <dc:creator>neocorp</dc:creator>
 <guid isPermaLink="false">8244 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Text to speech without using TTS</title>
 <link>http://www.javaworld.com/community/node/8238</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hi All,&lt;br /&gt;
      My requirement is to convert a string value to speech without using TTS (freeTTs). how can i achieve this? can anybody give me some idea. it could be helpful.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/enterprise&quot; class=&quot;og_links&quot;&gt;Enterprise Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/89">java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2182">java sound</category>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <pubDate>Thu, 08 Dec 2011 05:48:10 -0500</pubDate>
 <dc:creator>sridharkosna</dc:creator>
 <guid isPermaLink="false">8238 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Hibernate query for joining two tables.</title>
 <link>http://www.javaworld.com/community/node/8221</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;I need to join two tables User and Employee. And the query will be like,&lt;/p&gt;
&lt;p&gt;List list = hibernateTemplate.find(&quot;from User u left join fetch u.employee e&quot;);&lt;/p&gt;
&lt;p&gt;So what I have to do in the User,Employee POJO.&lt;br /&gt;
SQL requirement is SELECT userName,firstName from Employee as e LEFT JOIN User as u ON u.userId = e. userId.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/319">Hibernate</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/829">Java Programming Concepts</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/303">Spring</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/844">Web Application Frameworks</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Mon, 14 Nov 2011 05:40:09 -0500</pubDate>
 <dc:creator>lofa in</dc:creator>
 <guid isPermaLink="false">8221 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>regarding row reading from Mysql ..</title>
 <link>http://www.javaworld.com/community/node/8220</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;i am trying to read rows from mysql database.like &lt;/p&gt;
&lt;p&gt;............&lt;br /&gt;
.........&lt;br /&gt;
while(rs.next){&lt;/p&gt;
&lt;p&gt;x=rs.getstring(&quot;columnname&quot;);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;my question is when a row is readed some action is to be perfromed.but in this case control goes to next row before completion of task.&lt;/p&gt;
&lt;p&gt;how to handle it ,please help me if anyone aware of it.&lt;/p&gt;
&lt;p&gt;Thanks ,&lt;br /&gt;
krishna umareddy.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/enterprise&quot; class=&quot;og_links&quot;&gt;Enterprise Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/821">Core Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/829">Java Programming Concepts</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <pubDate>Mon, 14 Nov 2011 01:33:50 -0500</pubDate>
 <dc:creator>krishna523</dc:creator>
 <guid isPermaLink="false">8220 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>How to manage a dbms with multimedia content in java - jdbc(client /server)</title>
 <link>http://www.javaworld.com/community/node/8208</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;I am an old timer from the 90s so java7 is a bit of a shock to me as ima an SCJP for java 2 platform from 2000.&lt;/p&gt;
&lt;p&gt;Please suggest the best way to manage a multimedia databse containg (*.jpg and *.au) files in a DBMS or RDBMS using JDBC for both client(Standalone java application) and server side(Servlets).&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/enterprise&quot; class=&quot;og_links&quot;&gt;Enterprise Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/883">Agile/Lean/XP</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/832">AJAX, RIA and Web 2.0</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/840">Application Servers</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/835">Architecture and Scalability</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/824">Client-side Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/882">Community Update</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/821">Core Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/881">Current stuff</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/843">Data Management and RDBMS</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/825">Design Patterns</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/856">Design Techniques</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/836">Enterprise Best Practices</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/830">Enterprise Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/857">How-To Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/858">Java 101</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/831">Java and XML</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/859">Java Design Patterns</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/838">Java Development Tools</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/839">Java IDEs</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/823">Java Language</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/837">Java ME</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/826">Java Platform APIs</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/829">Java Programming Concepts</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/860">Java Q&amp;amp;A</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/822">Java Security</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/884">Java Tip</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/861">Java Tips</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/862">Java Traps</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/834">Java Web Development</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/865">JavaWorld Archives</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2343">JDBC programming using binary streams for BLOBs</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/841">Open Source Tools</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/842">Scripting and Other Languages</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/863">Server-Side Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/845">Software Development Lifecycle</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/846">Software Development Methodologies</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/854">Software Development Tools</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/828">Swing/GUI Programming</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/855">Testing and Debugging</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/827">Threads/Concurrency</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/864">Under the Hood</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/844">Web Application Frameworks</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/833">Web Services and SOA</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <pubDate>Mon, 07 Nov 2011 09:54:46 -0500</pubDate>
 <dc:creator>arunrajp</dc:creator>
 <guid isPermaLink="false">8208 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title> How to remove prefix from target namespace </title>
 <link>http://www.javaworld.com/community/node/8204</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hi All, &lt;/p&gt;
&lt;p&gt;I am new to this forum.&lt;br /&gt;
I am working on java web services. I am using &quot;wsdl2java&quot; tool to create a java stub file.&lt;br /&gt;
In my wsdl file value of targetnamespace is &quot;urn:HPD_IncidentInterface_Create_WS&quot; but i want to remove this urn prefix from java stub file.&lt;br /&gt;
I can&#039;t change wsdl file as it is application generated so is there any way to do this. &lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/829">Java Programming Concepts</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/833">Web Services and SOA</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/mobile">Mobile Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Thu, 03 Nov 2011 03:28:29 -0400</pubDate>
 <dc:creator>hemant89</dc:creator>
 <guid isPermaLink="false">8204 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Deploying Jackrabbit to JBoss AS 7</title>
 <link>http://www.javaworld.com/community/node/8185</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Here are step by step directions on how to configure Jackrabbit  to JBoss AS 7.&lt;/p&gt;
&lt;p&gt;1. Create directory for the jcr deployment&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;$ cd $JBOSS_HOME/modules&lt;br /&gt;$ mkdir -p javax/jcr/main&lt;br /&gt;$ vi module.xml&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
Add the following snippet to the newly created module.xml file&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;javax.jcr&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;dependencies&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot; export=&amp;quot;true&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/dependencies&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;resources&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;resource-root path=&amp;quot;jcr-2.0.jar&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- Insert resources here --&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/resources&amp;gt;&lt;br /&gt;&amp;lt;/module&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
Copy the jcr-2.0.jar to &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/8185&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/840">Application Servers</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/881">Current stuff</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Thu, 20 Oct 2011 05:09:17 -0400</pubDate>
 <dc:creator>srikanth.s.nair</dc:creator>
 <guid isPermaLink="false">8185 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Setting Oracle Datasource in JBoss AS 7</title>
 <link>http://www.javaworld.com/community/node/8184</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Here are step by step directions on how to configure JBoss AS 7 to communicate with Oracle XE.&lt;/p&gt;
&lt;p&gt;1. Create directory for the oracle driver deployment&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;$ cd $JBOSS_HOME/modules&lt;br /&gt;$ mkdir -p com/oracle/ojdbc6/main&lt;br /&gt;$ vi module.xml&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
Add the following snippet to the newly created module.xml file&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;com.oracle.ojdbc6&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;resources&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;resource-root path=&amp;quot;ojdbc6.jar&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/resources&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;dependencies&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/dependencies&amp;gt;&lt;br /&gt;&amp;lt;/module&amp;gt;&lt;/code&gt;&lt;/div&gt; &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/8184&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/840">Application Servers</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/881">Current stuff</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Thu, 20 Oct 2011 04:06:54 -0400</pubDate>
 <dc:creator>srikanth.s.nair</dc:creator>
 <guid isPermaLink="false">8184 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>License Terms for Java Code @JavaWorld</title>
 <link>http://www.javaworld.com/community/node/8181</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hi,&lt;br /&gt;
What are the License Terms for usage of code published on JavaWorld as an application ?&lt;br /&gt;
Thanks&lt;br /&gt;
-sacgaw&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/corejava&quot; class=&quot;og_links&quot;&gt;Core Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2325">License Terms</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/854">Software Development Tools</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <pubDate>Mon, 17 Oct 2011 13:06:12 -0400</pubDate>
 <dc:creator>sacgaw</dc:creator>
 <guid isPermaLink="false">8181 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Unable to create soft-link in ubuntu</title>
 <link>http://www.javaworld.com/community/node/8176</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;hello,&lt;/p&gt;
&lt;p&gt;i m writing an app in which i want to create soft-link of files. I m using java for that and my code is :-&lt;/p&gt;
&lt;p&gt;public static void crtsftlnk(String trgt, String sftlnk)&lt;br /&gt;
{&lt;br /&gt;
try {&lt;br /&gt;
Process proc;&lt;br /&gt;
Runtime rt = Runtime.getRuntime();&lt;br /&gt;
proc = rt.exec(&quot;ln -s &quot;+trgt+&quot; &quot;+sftlnk);&lt;br /&gt;
BufferedReader br = new BufferedReader(new InputStreamReader(proc.getInputStream()));&lt;/p&gt;
&lt;p&gt;String line;&lt;br /&gt;
while ((line = br.readLine()) != null)&lt;br /&gt;
{&lt;br /&gt;
System.out.println(line);&lt;br /&gt;
}&lt;br /&gt;
} catch (Exception e)&lt;br /&gt;
{&lt;br /&gt;
//e.printStackTrace();&lt;br /&gt;
}&lt;br /&gt;
} &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/8176&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/821">Core Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/856">Design Techniques</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/857">How-To Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/865">JavaWorld Archives</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2320">linux-command</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2319">soft-links</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Sat, 15 Oct 2011 02:31:03 -0400</pubDate>
 <dc:creator>r4jiv007</dc:creator>
 <guid isPermaLink="false">8176 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>String Tokenizer...Confused on what to do next</title>
 <link>http://www.javaworld.com/community/node/8161</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hello! I am a student (obviously, haha), and I am confused about how I need to do something in my driver class. I have a text file that I am reading in, then I decided to use a string tokenizer to parse the data. Now, I need to store the data to something, and then I have two other classes that I had to create in accordance with lab specs, and use them to get a specific output. I know the classes don&#039;t interact, but once I parse this string, how should I store the data and then call the other classes to use this data to get my output? I can&#039;t find an example of what I am trying to do. &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/8161&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/discussion&quot; class=&quot;og_links&quot;&gt;Community Discussion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2318">classes</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2317">proper syntax</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2316">tokenizer</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <pubDate>Wed, 05 Oct 2011 21:41:43 -0400</pubDate>
 <dc:creator>andimiami</dc:creator>
 <guid isPermaLink="false">8161 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Between Google and Oracle</title>
 <link>http://www.javaworld.com/community/node/8128</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;This was the first I read about the lawsuit between Google and Oracle over the way Google&#039;s Android uses Java. Very interesting. I am a heavy Java and Android user of both, and hope a resolution is made that keeps Java running on Android smoothly.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/mobile&quot; class=&quot;og_links&quot;&gt;Mobile Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/mobile">Mobile Java</group>
 <pubDate>Sun, 18 Sep 2011 22:44:44 -0400</pubDate>
 <dc:creator>frank0182</dc:creator>
 <guid isPermaLink="false">8128 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Copy text from EXCEL in to Java</title>
 <link>http://www.javaworld.com/community/node/8122</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Daily grind at work requires me to copy and paste text in to a Java based company intranet web page. This is a labor intensive task due to the volume of data needing to be input. Using my mouse all day for this task is insane.&lt;/p&gt;
&lt;p&gt;How is it possible to copy text from EXCEL and paste it in to a java based web page using VBA from Excel? Please describe as many characteristics of this process as possible and sources of potential VBA code.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2307">copy and paste to Java from Excel</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/821">Core Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/911">excel</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/858">Java 101</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2308">Paste in to Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2309">VBA macro</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Tue, 13 Sep 2011 15:31:05 -0400</pubDate>
 <dc:creator>redrasp12</dc:creator>
 <guid isPermaLink="false">8122 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Access remote linux file using web application deployed in another linux server using SMB</title>
 <link>http://www.javaworld.com/community/node/8027</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Is it possible to access remote linux file using an application deployed in another linux box using smb protocol. If it is, could anybody please explain how to or post some sample code.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Naresh&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/corejava&quot; class=&quot;og_links&quot;&gt;Core Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/863">Server-Side Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/844">Web Application Frameworks</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <pubDate>Tue, 28 Jun 2011 01:29:07 -0400</pubDate>
 <dc:creator>narvava</dc:creator>
 <guid isPermaLink="false">8027 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Java Application</title>
 <link>http://www.javaworld.com/community/node/8010</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I&#039;m in the process of creating a java application for users to create electronic timesheets.  After I&#039;m finished with coding, how can i make my program a file that users can run on their machines as an actual application?  &lt;/p&gt;
&lt;p&gt;Users are all using Microsoft XP if it matters.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/discussion&quot; class=&quot;og_links&quot;&gt;Community Discussion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/821">Core Java</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/282">Eclipse</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/857">How-To Java</category>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <pubDate>Wed, 22 Jun 2011 09:11:34 -0400</pubDate>
 <dc:creator>pedrito287</dc:creator>
 <guid isPermaLink="false">8010 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Visuam Vm</title>
 <link>http://www.javaworld.com/community/node/7730</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;How to check the field values in Visual VM.It shows the heap memory details. In Class tab it contains many classes and each class contains many fields.&lt;br /&gt;
I thing this is machine understandable. Ex:Class Name is java.lang.Object and its have many fields.&lt;br /&gt;
Suppose i used only one variable in the program(x) and i set the values to that variable, where i can find the value in visualVM.&lt;br /&gt;
Thanks in advance......&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2282">Java Visual vm</category>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/mobile">Mobile Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Thu, 02 Jun 2011 01:59:37 -0400</pubDate>
 <dc:creator>saranya1211</dc:creator>
 <guid isPermaLink="false">7730 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Differece between overloading and overriding</title>
 <link>http://www.javaworld.com/community/node/7726</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Can any one differentiate method overloading and overriding.&lt;/p&gt;
&lt;p&gt;please reach me ASAP.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/corejava&quot; class=&quot;og_links&quot;&gt;Core Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <pubDate>Mon, 30 May 2011 12:07:53 -0400</pubDate>
 <dc:creator>raju2011</dc:creator>
 <guid isPermaLink="false">7726 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>continuation</title>
 <link>http://www.javaworld.com/community/node/7707</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;The system seems to have cut off the last part of my post; here is the rest:&lt;br /&gt;
          }while(i &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/7707&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/discussion&quot; class=&quot;og_links&quot;&gt;Community Discussion&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2270">PDFRenderer / multip[age pdf</category>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <pubDate>Mon, 23 May 2011 08:26:41 -0400</pubDate>
 <dc:creator>samcheri</dc:creator>
 <guid isPermaLink="false">7707 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>PDF Renderer / multipage pdf</title>
 <link>http://www.javaworld.com/community/node/7706</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;just starting to learn java; am tryng to use PDFRenderer to show pdf files (mainly multipage music scores); Use Netbeans 7 IDE; the program structure is like this: File selector to select the pdf file&lt;br /&gt;
           Text field to enter the no. of seconds (user-defined) between the&lt;br /&gt;
           pages of the pdf&lt;/p&gt;
&lt;p&gt;           Code to render the pdf and show it page by page with the&lt;br /&gt;
           user-defined delay between pages&lt;/p&gt;
&lt;p&gt;           The core code to render the pdf and the delay between pages:&lt;br /&gt;
           &quot;filename&quot; and &quot;timepassed&quot; are passed after getting these from the &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.javaworld.com/community/node/7706&quot;&gt;&lt;br /&gt;&lt;br /&gt;Read more ...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/2269">PDFRenderer</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Mon, 23 May 2011 08:11:36 -0400</pubDate>
 <dc:creator>samcheri</dc:creator>
 <guid isPermaLink="false">7706 at http://www.javaworld.com/community</guid>
</item>
<item>
 <title>Oracle Database Installation Windows</title>
 <link>http://www.javaworld.com/community/node/7695</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;In this tutorial, we are going to learn on how to install Oracle database on windows operating system.&lt;br /&gt;
&lt;a href=&quot;http://www.togotutor.com/oracle-database/install-oracle-database-windows.php&quot; title=&quot;http://www.togotutor.com/oracle-database/install-oracle-database-windows.php&quot; rel=&quot;nofollow&quot;&gt;http://www.togotutor.com/oracle-database/install-oracle-database-windows...&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/community/tools&quot; class=&quot;og_links&quot;&gt;Tools and Methods&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <category domain="http://www.javaworld.com/community/taxonomy/term/881">Current stuff</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/843">Data Management and RDBMS</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/746">database</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/541">installation</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/463">Oracle</category>
 <category domain="http://www.javaworld.com/community/taxonomy/term/748">windows</category>
 <group domain="http://www.javaworld.com/community/discussion">Community Discussion</group>
 <group domain="http://www.javaworld.com/community/corejava">Core Java</group>
 <group domain="http://www.javaworld.com/community/enterprise">Enterprise Java</group>
 <group domain="http://www.javaworld.com/community/mobile">Mobile Java</group>
 <group domain="http://www.javaworld.com/community/tools">Tools and Methods</group>
 <pubDate>Wed, 18 May 2011 23:52:18 -0400</pubDate>
 <dc:creator>togotutor</dc:creator>
 <guid isPermaLink="false">7695 at http://www.javaworld.com/community</guid>
</item>
</channel>
</rss>

