<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1008137881623868388</id><updated>2012-02-10T10:26:10.530-08:00</updated><category term='Blistering start for India'/><category term='disaster'/><category term='Sony Ericsson Open - Miami'/><category term='employee'/><category term='ICC WC-India&apos;s Chances for Super 8'/><category term='satyam'/><category term='salaries'/><category term='All the best India'/><title type='text'>Technical Discussion Forum</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>28</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-3976010373068470792</id><published>2012-01-05T06:52:00.000-08:00</published><updated>2012-02-01T09:43:00.275-08:00</updated><title type='text'>Interview questions</title><content type='html'>These are few interview questions asked. The questions are based on Java and non technical. Some of the questions seems to be very simple and staight forward.&lt;br /&gt;&lt;br /&gt;1. what is the difference between comments in java&lt;br /&gt;&lt;br /&gt;Ans: 3 types of comments in java&lt;br /&gt;&lt;br /&gt; a. // - which is single line comment&lt;br /&gt; b. /*  */ - which is &lt;span&gt;to add a comment of more than one line, we can precede our comment using&lt;b&gt;/*&lt;br /&gt; c. /**  */ -&lt;/b&gt;multiple line comments. Used for documentation purpose.&lt;br /&gt;&lt;br /&gt;2. when there is a problem with the application, as a developer where we need to look at.&lt;br /&gt;&lt;br /&gt;Ans : error logs and application server log files&lt;br /&gt;&lt;br /&gt;3. How do you avoid deadlocks in a multithreaded enviornment?&lt;br /&gt;&lt;br /&gt;Ans : first approach try to avoid synchronized where ever possible. If it is unavoidable, then code in such way that each thread should get lock &amp;amp; unlock in the same order or squence.&lt;br /&gt;&lt;br /&gt;4. &lt;/span&gt;Write a Java program that:&lt;br /&gt;&lt;br /&gt;- inputs a String from a user. Expect the String to contain spaces and alphanumeric characters only.&lt;br /&gt;- capitalizes all first letters of the words in the given String.&lt;br /&gt;- preserves all other characters (including spaces) in the String.&lt;br /&gt;- displays the result to the user.&lt;br /&gt;&lt;br /&gt;Answer :   *&lt;br /&gt;Approach : I have followed a simple approach. However there are many string utilities available&lt;br /&gt;* for the same purpose. Example : WordUtils.capitalize(str) (from apache commons-lang)&lt;br /&gt;&lt;br /&gt;/*****************************************************************************/&lt;br /&gt;public static void main(String[] args) throws IOException{&lt;br /&gt;      System.out.println("Input String :\n");&lt;br /&gt;      InputStreamReader converter = new InputStreamReader(System.in);&lt;br /&gt;      BufferedReader in = new BufferedReader(converter);&lt;br /&gt;      String inputString = in.readLine();&lt;br /&gt;      int length = inputString.length();&lt;br /&gt;      StringBuffer newStr = new StringBuffer(0);&lt;br /&gt;      int i = 0;&lt;br /&gt;      int k = 0;&lt;br /&gt;      /* This is a simple approach&lt;br /&gt;       * step 1: scan through the input string&lt;br /&gt;       * step 2: capitalize the first letter of each word in string&lt;br /&gt;       * The integer k, is used as a value to determine whether the&lt;br /&gt;       * letter is the first letter in each word in the string.&lt;br /&gt;       */&lt;br /&gt;           &lt;br /&gt;      while( i &amp;lt; length){&lt;br /&gt;          if (Character.isLetter(inputString.charAt(i))){&lt;br /&gt;              if ( k == 0){&lt;br /&gt;              newStr = newStr.append(Character.toUpperCase(inputString.charAt(i)));&lt;br /&gt;              k = 2;&lt;br /&gt;              }//this else loop is to avoid repeatation of the first letter in output string&lt;br /&gt;              else {&lt;br /&gt;              newStr = newStr.append(inputString.charAt(i));&lt;br /&gt;              }&lt;br /&gt;          } // for the letters which are not first letter, simply append to the output string.&lt;br /&gt;          else {&lt;br /&gt;              newStr = newStr.append(inputString.charAt(i));&lt;br /&gt;              k=0;&lt;br /&gt;          }&lt;br /&gt;          i+=1;         &lt;br /&gt;      }&lt;br /&gt;      System.out.println("new String -&amp;gt;"+newStr);&lt;br /&gt;      }&lt;br /&gt;  }&lt;br /&gt;/*****************************************************************************/&lt;br /&gt;&lt;br /&gt;&lt;span&gt;5. How to reverse a string?&lt;br /&gt;&lt;br /&gt;InputStreamReader inst = new InputStreamReader(System.in);&lt;br /&gt;       BufferedReader in = new BufferedReader(inst);&lt;br /&gt;       StringBuffer input = new StringBuffer(in.readLine());&lt;br /&gt;      System.out.println("Input String--&amp;gt;"+input);&lt;br /&gt;      System.out.print("reverse String--&amp;gt;");&lt;br /&gt;       System.out.print(input.reverse());&lt;br /&gt;&lt;br /&gt;6. Palindrome program.&lt;br /&gt;&lt;br /&gt;InputStreamReader instr =  new InputStreamReader(System.in);&lt;br /&gt;        BufferedReader in = new BufferedReader(instr);&lt;br /&gt;        StringBuffer input = new StringBuffer(in.readLine());&lt;br /&gt;        StringBuffer reverseStr = new StringBuffer(input.reverse());&lt;br /&gt;        String inStr = input.toString().trim();&lt;br /&gt;        String outStr = reverseStr.toString().trim();&lt;br /&gt;        System.out.println(reverseStr);&lt;br /&gt;        if (inStr.equals(outStr)) {&lt;br /&gt;            //if (input.length() == reverseStr.length()) {&lt;br /&gt;                System.out.println("Palindrome");&lt;br /&gt;            //}&lt;br /&gt;        } else {&lt;br /&gt;            System.out.println("not Palindrome");&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;7. How does equals() method differs for String and StringBuffer classes?&lt;br /&gt;&lt;br /&gt; String.equals() compares the 2 strings whereas StringBuffer.equals will return true only if compared with itself.&lt;br /&gt;&lt;br /&gt;for comparision of strings we must use String.euqals() method  or convert the StringBuffer to String and then compare.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-3976010373068470792?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/3976010373068470792/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=3976010373068470792' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3976010373068470792'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3976010373068470792'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2012/01/interview-questions.html' title='Interview questions'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-7359320193426818092</id><published>2011-06-07T07:41:00.000-07:00</published><updated>2011-06-07T07:45:33.904-07:00</updated><title type='text'>Deploy a JSP in WebLogic 10.3.4</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 15px; font-family: arial, verdana, helvetica, sans-serif; "&gt;Easy Steps :&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 15px; font-family: arial, verdana, helvetica, sans-serif; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 15px; font-family: arial, verdana, helvetica, sans-serif; "&gt;1. Place the JSP in a new folder say Temp.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 15px; font-family: arial, verdana, helvetica, sans-serif; "&gt;2. Create the war file using the command - jar -cvf TestJSP.war myJSP.jsp&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 15px; font-family: arial, verdana, helvetica, sans-serif; "&gt;3. Upload this war file from the weblogic deployments console&lt;br /&gt;4. Access the JSP with URL -   http://localhost:7001/TestJSP/myJSP.jsp&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 15px; font-family: arial, verdana, helvetica, sans-serif; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 15px; font-family: arial, verdana, helvetica, sans-serif; "&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-7359320193426818092?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/7359320193426818092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=7359320193426818092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/7359320193426818092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/7359320193426818092'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2011/06/deploy-jsp-in-weblogic-1034.html' title='Deploy a JSP in WebLogic 10.3.4'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-144438497134697335</id><published>2011-05-15T00:51:00.000-07:00</published><updated>2011-05-15T01:12:58.224-07:00</updated><title type='text'>org.hibernate.QueryException: ClassNotFoundException: org.hibernate.hql.ast.HqlToken</title><content type='html'>&lt;span class="Apple-style-span"&gt;This is in sequence to my earlier post.&lt;br /&gt;&lt;br /&gt;There are 2 ways as given below. But in my  environment , I had to apply both the following steps as solution for above issue.&lt;br /&gt;&lt;br /&gt;1. Changes in weblogic-application.xml&lt;br /&gt;&lt;br /&gt;Add the antlr.* in the &lt;prefer-application-packages&gt; tag&lt;br /&gt;----------------------------------&lt;br /&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; font-family: Arial, 'Liberation Sans', 'DejaVu Sans', sans-serif; font-size: 14px; line-height: 18px; "&gt;&lt;pre class="lang-java prettyprint" style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; overflow-x: auto; overflow-y: auto; width: auto; max-height: 600px; background-position: initial initial; background-repeat: initial initial; "&gt;&lt;code style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; background-position: initial initial; background-repeat: initial initial; "&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;lt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;prefer&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;application&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;packages&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;        &lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;lt;&lt;/span&gt;&lt;span class="kwd" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 139); background-position: initial initial; background-repeat: initial initial; "&gt;package&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;name&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;antlr&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;.*&lt;!--&lt;/span--&gt;&lt;span class="kwd" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 139); background-position: initial initial; background-repeat: initial initial; "&gt;package&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;name&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;    &lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;!--&lt;/span--&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;prefer&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;application&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;packages&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre class="lang-java prettyprint" style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; overflow-x: auto; overflow-y: auto; width: auto; max-height: 600px; background-position: initial initial; background-repeat: initial initial; "&gt;&lt;code style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; background-position: initial initial; background-repeat: initial initial; "&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;/span&gt;&lt;/code&gt;&lt;span class="Apple-style-span" style="font-family: Georgia, serif; font-size: 16px; border-collapse: separate; line-height: normal; white-space: normal; "&gt;-------------------------------------&lt;/span&gt;&lt;/pre&gt;&lt;/span&gt;&lt;br /&gt;2. Changes in weblogic.xml&lt;br /&gt;&lt;br /&gt;----------------------------------------&lt;br /&gt;WebLogic has it's own version of ANTLR. Set the prefer-web-inf-classes element in weblogic.xml to true.&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; font-family: Arial, 'Liberation Sans', 'DejaVu Sans', sans-serif; font-size: 14px; line-height: 18px; "&gt;&lt;pre class="lang-java prettyprint" style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; overflow-x: auto; overflow-y: auto; width: auto; max-height: 600px; background-position: initial initial; background-repeat: initial initial; "&gt;&lt;span class="Apple-style-span" style="font-family: Arial, 'Liberation Sans', 'DejaVu Sans', sans-serif; white-space: normal; "&gt;&lt;pre class="lang-java prettyprint" style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; overflow-x: auto; overflow-y: auto; width: auto; max-height: 600px; background-position: initial initial; background-repeat: initial initial; "&gt;&lt;code style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; background-position: initial initial; background-repeat: initial initial; "&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;lt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;weblogic&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;web&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;app&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;  &lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;....&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;  &lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;lt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;container&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;descriptor&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;    &lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;lt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;prefer&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;web&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;inf&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;classes&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="kwd" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 139); background-position: initial initial; background-repeat: initial initial; "&gt;true&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;!--&lt;/span--&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;prefer&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;web&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;inf&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;classes&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;  &lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;!--&lt;/span--&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;container&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;descriptor&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;  &lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;....&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;!--/&lt;/span--&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;weblogic&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;web&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;-&lt;/span&gt;&lt;span class="pln" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;app&lt;/span&gt;&lt;span class="pun" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: rgb(0, 0, 0); background-position: initial initial; background-repeat: initial initial; "&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/span&gt;&lt;br /&gt;------------------------------------------------&lt;/prefer-application-packages&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;prefer-application-packages&gt;&lt;br /&gt;&lt;/prefer-application-packages&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;prefer-application-packages&gt;****  take care of the closing tags in the above XMLs by opening the XML file in any browser.&lt;/prefer-application-packages&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-144438497134697335?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/144438497134697335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=144438497134697335' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/144438497134697335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/144438497134697335'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2011/05/orghibernatequeryexception.html' title='org.hibernate.QueryException: ClassNotFoundException: org.hibernate.hql.ast.HqlToken'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-8785540266508655161</id><published>2010-04-06T02:36:00.000-07:00</published><updated>2010-04-06T02:44:30.330-07:00</updated><title type='text'>SCJP 6</title><content type='html'>here are certain links for mock exams to prepare for scjp 6.0&lt;br /&gt;&lt;br /&gt;1.http://faq.javaranch.com/java/ScjpFaq&lt;br /&gt;2. http://faq.javaranch.com/java/ScjpMockTests&lt;br /&gt;3. http://examlab.tk/  &lt;br /&gt;&lt;br /&gt;Examlab is tough, but if you get 50% of score, then it is almost sure that you can pass the SCJP&lt;br /&gt;&lt;br /&gt;All the very best!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-8785540266508655161?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/8785540266508655161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=8785540266508655161' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8785540266508655161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8785540266508655161'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2010/04/scjp-6.html' title='SCJP 6'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-6443441846480575816</id><published>2010-01-16T22:33:00.000-08:00</published><updated>2010-01-16T22:36:03.628-08:00</updated><title type='text'>ICICI has removed the NEFT charges &amp; HDFC introduced NEFT charges:)</title><content type='html'>Finally ICICI Bank not charging for the online transactions. That is good news for this new year!!!&lt;br /&gt;&lt;br /&gt;But HDFC introduced the NEFT charges....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-6443441846480575816?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/6443441846480575816/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=6443441846480575816' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/6443441846480575816'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/6443441846480575816'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2010/01/icici-has-removed-neft-charges-hdfc.html' title='ICICI has removed the NEFT charges &amp; HDFC introduced NEFT charges:)'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-879189158599525395</id><published>2010-01-16T22:16:00.000-08:00</published><updated>2010-01-16T22:29:32.022-08:00</updated><title type='text'>Real Estate comparison in Bangalore and Trivandrum</title><content type='html'>This is a just my observation about the real estate market in Bangalore and Trivandrum. I recently bought a plot in Bangalore !( can not say it is in Bangalore as the place is very far away from Bangalore city.)&lt;br /&gt;&lt;br /&gt;I purchased a 2064 sq ft in xxxxhalli  :-) in Old Madras Road. It is very near to the Volvo factory in Bangalore. It cost me around 9 lacs. I am not sure whether it was a good deal or not. But later I found that the local people sold that area to the builders for about INR 225 per sq ft. This is a rough calculation. But having said that, I am getting the advantages of a fully built Township features at my place. So I am consoling myself. :)&lt;br /&gt;&lt;br /&gt;I bought a flat in Trivandrum in 2008. It is a 3 BHK &amp; cost me 34 lacs. Again at that time I was hoping to increase the price of flat in future, but now if I buy the same flat, there is hardly any change in price or no change. &lt;br /&gt;&lt;br /&gt;But at that time I had inquired the price in Bangalore as well. The price is drastically changed during these period. &lt;br /&gt;&lt;br /&gt;But I know that the market value for a city like Bangalore is nothing comparable to Trivandrum and again I will say that it is good that the flat price has not come down  in Trivandrum even at the rescission time:)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-879189158599525395?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/879189158599525395/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=879189158599525395' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/879189158599525395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/879189158599525395'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2010/01/real-estate-comparison-in-bangalore-and.html' title='Real Estate comparison in Bangalore and Trivandrum'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-1694728526974415827</id><published>2009-07-18T07:27:00.000-07:00</published><updated>2009-07-18T08:16:44.529-07:00</updated><title type='text'>What is the use of setting SerialVersionUID in serialization?</title><content type='html'>The serialVersionUID is a universal version identifier for a Serializable class. Deserialization uses this number to ensure that a loaded class corresponds exactly to a serialized object. If no match is found, then an InvalidClassException is thrown. &lt;br /&gt;&lt;br /&gt;Guidelines for serialVersionUID :&lt;br /&gt;&lt;br /&gt;    * always include it as a field, for example: "private static final long serialVersionUID = 7526472295622776147L; " include this field even in the first version of the class, as a reminder of its importance&lt;br /&gt;    * do not change the value of this field in future versions, unless you are knowingly making changes to the class which will render it incompatible with old serialized objects&lt;br /&gt;    * new versions of Serializable classes may or may not be able to read old serialized objects;  it depends upon the nature of the change; provide a pointer to Sun's guidelines for what constitutes a compatible change, as a convenience to future maintainers&lt;br /&gt;&lt;br /&gt;In Windows, generate serialVersionUID using the JDK's graphical tool like so :&lt;br /&gt;&lt;br /&gt;    * use Control Panel | System | Environment to set the classpath to the correct directory&lt;br /&gt;    * run serialver -show from the command line&lt;br /&gt;    * point the tool to the class file including the package, for example, finance.stock.Account - without the .class&lt;br /&gt;    * (here are the serialver docs for both Win and Unix)&lt;br /&gt;&lt;br /&gt;readObject and writeObject :&lt;br /&gt;&lt;br /&gt;    * readObject implementations always start by calling default methods&lt;br /&gt;    * deserialization must be treated as any constructor : validate the object state at the end of deserializing - this implies that readObject should almost always be implemented in Serializable classes, such that this validation is performed.&lt;br /&gt;    * deserialization must be treated as any constructor :  if constructors make defensive copies for mutable object fields, so must readObject&lt;br /&gt;    * when serializing a Collection, store the number of objects in the Collection as well, and use this number to read them back in upon deserialization; avoid tricks using null&lt;br /&gt;&lt;br /&gt;Other points :&lt;br /&gt;&lt;br /&gt;    * use javadoc's @serial tag to denote Serializable fields&lt;br /&gt;    * the .ser extension is conventionally used for files representing serialized objects&lt;br /&gt;    * no static or transient fields undergo default serialization&lt;br /&gt;    * extendable classes should not be Serializable, unless necessary&lt;br /&gt;    * inner classes should rarely, if ever, implement Serializable&lt;br /&gt;    * container classes should usually follow the style of Hashtable, which implements Serializable by storing keys and values, as opposed to a large hash table data structure&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; /**&lt;br /&gt;   * Determines if a de-serialized file is compatible with this class.&lt;br /&gt;   *&lt;br /&gt;   * Maintainers must change this value if and only if the new version&lt;br /&gt;   * of this class is not compatible with old versions. See Sun docs&lt;br /&gt;   * for &lt;a href=http://java.sun.com/products/jdk/1.1/docs/guide&lt;br /&gt;   * /serialization/spec/version.doc.html&gt; details. &lt;/a&gt;&lt;br /&gt;   *&lt;br /&gt;   * Not necessary to include in first version of the class, but&lt;br /&gt;   * included here as a reminder of its importance.&lt;br /&gt;   */&lt;br /&gt;   private static final long serialVersionUID = 7526471155622776147L;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;[Post New]posted Monday, May 09, 2005 10:44 PM private message&lt;br /&gt;Quote [Up]&lt;br /&gt;*g* as you mention "Java RMI"... it says:&lt;br /&gt;&lt;br /&gt;"The downside of using serialVersionUID is that, if a significant change is made (for example, if a field is added to the class definition), the suid will not reflect this difference. This means that the deserialization code might not detect an incompatible version of a class."&lt;br /&gt;&lt;br /&gt;and furtheron suggests to implement readObject &amp; friends and writing a version "manually".&lt;br /&gt;&lt;br /&gt;All this in order to gain performance:&lt;br /&gt;&lt;br /&gt;"Setting serialVersionUID is a simple, and often surprisingly noticeable, performance improvement. If you don't set serialVersionUID, the serialization mechanism has to compute it. This involves going through all the fields and methods and computing a hash. If you set serialVersionUID, on the other hand, the serialization mechanism simply looks up a single value."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-1694728526974415827?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/1694728526974415827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=1694728526974415827' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/1694728526974415827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/1694728526974415827'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2009/07/what-is-use-of-setting-serialversionuid.html' title='What is the use of setting SerialVersionUID in serialization?'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-2377984837874259573</id><published>2009-01-09T20:16:00.000-08:00</published><updated>2009-01-09T20:34:57.446-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='satyam'/><category scheme='http://www.blogger.com/atom/ns#' term='employee'/><category scheme='http://www.blogger.com/atom/ns#' term='salaries'/><title type='text'>Satyam -Latest information</title><content type='html'>Mr.Raju surrendered to HYG DGP last night. Experts says that this was a wise movement from Mr.Raju. The main concerns now are&lt;br /&gt;&lt;br /&gt;1. How many people from the corporate are involved in the sandal?&lt;br /&gt;2. What about the future of the 53,000 employees?&lt;br /&gt;3. Do the existing customers are willing to continue with satyam projects.?&lt;br /&gt;4. Is Satyam going to pay salaries for the employees for couple of months. Rumors that Satyam does not have enough fund for paying off Salaries for the employees and they might layoff 10,000 employees or cut short the salary for the employees. However there are no official communication from Satyam on this.&lt;br /&gt;&lt;br /&gt;Experts says that whatever happens, eventually it is the employees who are going to pay off due to any type of fraud from their bosses. That being a general statement, lets hope it will not happen with Satyam employees.&lt;br /&gt;&lt;br /&gt;However personally I support Mr.Raju. I am not very sure about what inside the scandal issue. But from my understanding there are something bigger behind the scene.&lt;br /&gt;Lets wait &amp; see!!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-2377984837874259573?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/2377984837874259573/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=2377984837874259573' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/2377984837874259573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/2377984837874259573'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2009/01/satyam-latest-information.html' title='Satyam -Latest information'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-125102844890907332</id><published>2009-01-02T05:49:00.000-08:00</published><updated>2009-01-02T05:52:15.260-08:00</updated><title type='text'>2009</title><content type='html'>Satyam-India's 4th largest IT company is having tough time in 2009. I hope there will be a positive result after the January 10th borad meeting. Roumers are many other top companies like IBM, HP and CTS are in top list of the bidding companies.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-125102844890907332?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/125102844890907332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=125102844890907332' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/125102844890907332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/125102844890907332'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2009/01/2009.html' title='2009'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-8769461977839195030</id><published>2008-12-26T16:22:00.000-08:00</published><updated>2008-12-26T17:04:20.862-08:00</updated><title type='text'>How to use  tag with  tag for dynamic variables</title><content type='html'>I had a specific requirement in my new project. The business functionality is to develop a simple screen with only 2 set of fields. One field with city name and other a drop down which will have list of country name and the default name in the drop down should be the country in which the city is displayed. The catch is the combination of cities are dynamic and the list of countries are static with almost 500 in the list. We can consider the city name &amp;amp; list of  countries as a single row in the screen. I mean there will be that many combination of city and drop down country,  be there as many products .&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;br /&gt;City Name                      Country Name&lt;br /&gt;-----------------------------------------------------------------&lt;br /&gt;Toronto                           Canada(this is the default from the list of 500)&lt;br /&gt;London                            UK(this is the default from the list of 500)&lt;br /&gt;.................etc&lt;br /&gt;&lt;br /&gt;For this I have used the following&lt;br /&gt;&lt;br /&gt;JSP code&lt;br /&gt;----------------------------------------------------------------------------&lt;br /&gt;&lt;blockquote&gt;&lt;logic:iterate id="detail" name="myForm" property="arrayListOfVOs"&gt;&lt;br /&gt;&lt;br /&gt; &lt;html:hidden name="detail" property="citycode" indexed="true"&gt;&lt;br /&gt;  &lt;bean:write name="detail" property="desc"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  &lt;span id="my__span" class="ABC"&gt;&lt;br /&gt;   &lt;html:select styleclass="ABC" name="detail" property="state" indexed="true"&gt;&lt;br /&gt;    &lt;html:simpleoptionscollection property="citiesArrayList" value="value" label="label" filter="false"&gt;&lt;br /&gt;   &lt;/html:simpleoptionscollection&gt;&lt;br /&gt;  &lt;/html:select&gt;&lt;/span&gt;     &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;/bean:write&gt;&lt;/blockquote&gt;&lt;br /&gt;-----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;in the form there will be 2 arraylists. citiesArrayList and arrayListOfVOs and getter and setter along with the indexed getter for retrieving the countyVO from the arraylist.&lt;br /&gt;&lt;br /&gt;I found this very useful because there is not even a single javascript in the code.&lt;br /&gt;Hope this article will be useful for people who are hesitate to use javascript in their code.&lt;/html:hidden&gt;&lt;/logic:iterate&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-8769461977839195030?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/8769461977839195030/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=8769461977839195030' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8769461977839195030'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8769461977839195030'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/12/how-to-use-tag-with-tag-for-dynamic.html' title='How to use &lt;logic:iterate&gt; tag with &lt;html:SimpleOption&gt; tag for dynamic variables'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-5930048837975600782</id><published>2008-11-19T18:04:00.000-08:00</published><updated>2008-11-19T18:09:08.032-08:00</updated><title type='text'>How to use tiles ?</title><content type='html'>Adding Tiles to Your Application&lt;br /&gt;&lt;br /&gt;Here are the steps necessary for adding Tiles to your Struts application:&lt;br /&gt;&lt;br /&gt;   1. Add the Tiles Tag Library Descriptor (TLD) file to the application.&lt;br /&gt;   2. Create layout JSPs.&lt;br /&gt;   3. Update existing JSPs to use layouts.&lt;br /&gt;   4. Create a tiles-defs.xml file.&lt;br /&gt;   5. Update forward definitions in and add the Tiles plug-in to the struts-config.xml file.&lt;br /&gt;   6. Repackage and run the updated application.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-5930048837975600782?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/5930048837975600782/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=5930048837975600782' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/5930048837975600782'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/5930048837975600782'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/how-to-use-tiles.html' title='How to use tiles ?'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-9220672219373033547</id><published>2008-11-19T12:22:00.001-08:00</published><updated>2008-11-19T12:22:48.271-08:00</updated><title type='text'>how to start with struts in your project?</title><content type='html'>http://www.java-tips.org/other-api-tips/struts/how-to-use-struts-framework.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-9220672219373033547?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/9220672219373033547/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=9220672219373033547' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/9220672219373033547'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/9220672219373033547'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/how-to-start-with-struts-in-your.html' title='how to start with struts in your project?'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-3141842375164856580</id><published>2008-11-19T11:37:00.000-08:00</published><updated>2008-11-19T11:40:04.378-08:00</updated><title type='text'>CSS in table</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'times new roman'; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; "&gt;&lt;span style="font-family:verdana;font-size:85%;color:#000000;"&gt;What does the Table Option Tag td class do&lt;/span&gt;&lt;p&gt;&lt;span style="font-family:verdana;font-size:85%;color:#000000;"&gt;&lt;td &lt;b style="color: black; background-color: rgb(255, 255, 170); "&gt;class=&lt;/b&gt;"xxxx"&lt;b style="color: black; background-color: rgb(187, 255, 255); "&gt;&gt;&lt;/b&gt;;&lt;/td&lt;b style="color: black; background-color: rgb(187, 255, 255); "&gt;&gt;&lt;/b&gt;;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="Apple-style-span" style="font-family: verdana; font-size: 12px;"&gt;&lt;span class="Apple-style-span" style="font-size: 11px; "&gt;Indicates that the table cell can be styled with a CSS rule &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: 11px; "&gt;targeting the ".xxxx" selector.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="Apple-style-span" style="font-family: verdana; font-size: 11px;"&gt;visit  http://www.w3c.org/Style/CSS/&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="Apple-style-span" style="font-family: verdana; font-size: 12px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-3141842375164856580?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/3141842375164856580/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=3141842375164856580' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3141842375164856580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3141842375164856580'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/css-in-table.html' title='CSS in table'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-236719100692813258</id><published>2008-11-14T16:15:00.000-08:00</published><updated>2008-11-14T16:18:25.417-08:00</updated><title type='text'>JVMDG217: Dump Handler is Processing a Signal - Please Wait.</title><content type='html'>I am getting the following error while starting my application.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:Courier New;font-size:85%;color:red;"&gt;JVMDG217: Dump Handler is Processing a Signal - Please Wait.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Courier New;font-size:85%;color:red;"&gt;JVMDG303: JVM Requesting Java core file&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Courier New;font-size:85%;color:red;"&gt;JVMDG304: Java core file written to C:\Program Files\IBM\Rational\SDP\6.0\&lt;wbr&gt;javacore.20081113.172339.652.&lt;wbr&gt;txt&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Courier New;font-size:85%;color:red;"&gt;JVMDG215: Dump Handler has Processed Exception Signal 11.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Trying to resolve the issue. I will post the resolution once I solve the issue.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-236719100692813258?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/236719100692813258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=236719100692813258' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/236719100692813258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/236719100692813258'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/jvmdg217-dump-handler-is-processing.html' title='JVMDG217: Dump Handler is Processing a Signal - Please Wait.'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-3498170375883578261</id><published>2008-11-13T19:30:00.001-08:00</published><updated>2008-11-13T19:33:28.826-08:00</updated><title type='text'>Travel Tips and Details</title><content type='html'>Please visit site  http://members.virtualtourist.com/m/ce3e8/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-3498170375883578261?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/3498170375883578261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=3498170375883578261' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3498170375883578261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3498170375883578261'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/travel-tips-and-details.html' title='Travel Tips and Details'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-8440621164466888818</id><published>2008-11-13T19:30:00.000-08:00</published><updated>2008-12-26T17:04:31.085-08:00</updated><title type='text'>Travel Tips and Details</title><content type='html'>Please visit site &lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-8440621164466888818?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/8440621164466888818/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=8440621164466888818' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8440621164466888818'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8440621164466888818'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/travel-tips-and-details_13.html' title='Travel Tips and Details'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-2917507477894724651</id><published>2008-11-12T08:39:00.001-08:00</published><updated>2008-11-12T08:39:19.491-08:00</updated><title type='text'>Banned products</title><content type='html'>&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; font-family: arial; font-size: 11px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;img src="http://mail.google.com/mail/?ui=2&amp;amp;ik=a3b7ef497e&amp;amp;view=att&amp;amp;th=11d910cd6edc6cea&amp;amp;attid=0.3&amp;amp;disp=emb&amp;amp;realattid=0.1&amp;amp;zw" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;div align="center"&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;b&gt;Dangerous Shampoo!!!&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:6;"&gt;&lt;br /&gt;Banned By Dubai Government!!&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;img alt="www.FunAndFunOnly.net" src="http://mail.google.com/mail/?ui=2&amp;amp;ik=a3b7ef497e&amp;amp;view=att&amp;amp;th=11d910cd6edc6cea&amp;amp;attid=0.7&amp;amp;disp=emb&amp;amp;realattid=0.2&amp;amp;zw" /&gt;&lt;span style="font-family:Times New Roman;font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;img alt="www.FunAndFunOnly.net" src="http://mail.google.com/mail/?ui=2&amp;amp;ik=a3b7ef497e&amp;amp;view=att&amp;amp;th=11d910cd6edc6cea&amp;amp;attid=0.6&amp;amp;disp=emb&amp;amp;realattid=0.3&amp;amp;zw" /&gt;&lt;span style="font-family:Times New Roman;font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;img alt="www.FunAndFunOnly.net" src="http://mail.google.com/mail/?ui=2&amp;amp;ik=a3b7ef497e&amp;amp;view=att&amp;amp;th=11d910cd6edc6cea&amp;amp;attid=0.5&amp;amp;disp=emb&amp;amp;realattid=0.4&amp;amp;zw" /&gt;&lt;span style="font-family:Times New Roman;font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;img alt="www.FunAndFunOnly.net" src="http://mail.google.com/mail/?ui=2&amp;amp;ik=a3b7ef497e&amp;amp;view=att&amp;amp;th=11d910cd6edc6cea&amp;amp;attid=0.2&amp;amp;disp=emb&amp;amp;realattid=0.5&amp;amp;zw" /&gt;&lt;span style="font-family:Times New Roman;font-size:180%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;img alt="www.FunAndFunOnly.net" src="http://mail.google.com/mail/?ui=2&amp;amp;ik=a3b7ef497e&amp;amp;view=att&amp;amp;th=11d910cd6edc6cea&amp;amp;attid=0.1&amp;amp;disp=emb&amp;amp;realattid=0.6&amp;amp;zw" /&gt;&lt;span style="font-family:Times New Roman;font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;img alt="www.FunAndFunOnly.net" src="http://mail.google.com/mail/?ui=2&amp;amp;ik=a3b7ef497e&amp;amp;view=att&amp;amp;th=11d910cd6edc6cea&amp;amp;attid=0.4&amp;amp;disp=emb&amp;amp;realattid=0.7&amp;amp;zw" /&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:#008250;"&gt;&lt;b&gt;&lt;u&gt;&lt;br /&gt;Sodium Laureth Sulfate&lt;/u&gt; &lt;u&gt;&lt;br /&gt;&lt;br /&gt;SLS&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;&lt;br /&gt;CLEAR&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;b&gt; , &lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;FRUCTIS &lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;b&gt;,&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;&lt;br /&gt;Vo5&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;b&gt;, &lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;Palmolive&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;b&gt;, &lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;Paul Mitchell&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;b&gt;,&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;L'Oreal&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;b&gt;, &lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;Body Shop&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt;&lt;br /&gt;&lt;br /&gt;All these Shampoos use a chemical called SLS which is actually &lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;b&gt;&lt;u&gt;a floor cleaner.&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;"&gt; They are used so as to produce more foam. &lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:6;color:#000080;"&gt;&lt;br /&gt;&lt;br /&gt;Imagine what a floor cleaner can do to you hair and scalp. It will damage the very roots of your scalp.&lt;br /&gt;Check out for SLS in toothpaste too!!! &lt;br /&gt;Use the ones which are free from this extremely harmful chemical.&lt;br /&gt;Type in 'SLS Free Shampoo' or 'SLS Free Toothpaste' in Google.Com to get a list of companies selling safe products&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:180%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr valign="top"&gt;&lt;td style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;Attention please.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Don't eat &lt;b&gt;&lt;u&gt;Kurkur&lt;/u&gt;&lt;/b&gt;e because it contains high amount of plastic if U don't believe burn Kurkure n U can see plastic melting. Please forward to all!!!!!!!!!!! &lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:6;color:blue;"&gt;Inform all whom you think requires this message as they eat Kurkure. &lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:#2f2f2f;"&gt;&lt;u&gt;&lt;br /&gt;&lt;br /&gt;News report from Times of India&lt;/u&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;br /&gt;Avoid these tablets they are very dangerous &lt;br /&gt;§ D Cold &lt;br /&gt;§ Vicks Action- 500 &lt;br /&gt;§ Actifed &lt;br /&gt;§ Coldarin &lt;br /&gt;§ Cosome &lt;br /&gt;§ Nice &lt;br /&gt;§ Nimulid &lt;br /&gt;§ Cetrizet-D &lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:#2020a0;"&gt;&lt;br /&gt;&lt;br /&gt;They contain &lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:#ff8100;"&gt;Phenyl- Propanol -Amide PPA.&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:#2020a0;"&gt;Which causes strokes, and these tablets are banned by FDA in U..S.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;table width="100%" style="border-collapse: collapse; "&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td width="100%" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, sans-serif; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:#00a000;"&gt;&lt;b&gt;&lt;u&gt;Cotton Ear Buds... (Must read it)&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:#a11f12;"&gt;&lt;br /&gt;&lt;br /&gt;Please do not show sympathy to people selling buds on roadside or at signals.....&lt;br /&gt;Just wanted to warn you people not to buy those packs of ear buds you get at the roadside. It's made from cotton that has already been used in hospitals. &lt;br /&gt;They take all the dirty, blood and pus filled cotton, wash it, bleach it and use it to make ear buds. So, unless you want to become the first person in the world to get Herpes Zoster Oticus (a viral infection of the inner, middle, and external ear) of the ear and that too from a cotton bud, DON'T BUY THEM! &lt;/span&gt;&lt;span style="font-family:Times New Roman;font-size:7;color:red;"&gt;&lt;br /&gt;&lt;br /&gt;Please forward to all. This may be helpful for someone..........&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-2917507477894724651?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/2917507477894724651/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=2917507477894724651' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/2917507477894724651'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/2917507477894724651'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/banned-products.html' title='Banned products'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-4086287659041516997</id><published>2008-11-12T08:03:00.000-08:00</published><updated>2008-11-12T08:05:56.156-08:00</updated><title type='text'>Satyam layoff again</title><content type='html'>India's major IT sector satyam computers laying off more employees. This has been reported by few of my friends in hyderabad. However there has not been any offical information on this. The expected or target number is 10,000. &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-4086287659041516997?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/4086287659041516997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=4086287659041516997' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/4086287659041516997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/4086287659041516997'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/11/satyam-layoff-again.html' title='Satyam layoff again'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-5424844570142633125</id><published>2008-10-29T13:43:00.000-07:00</published><updated>2008-10-29T13:45:02.191-07:00</updated><title type='text'></title><content type='html'>viswanathan anand retains the world champion title. The 11th game ended in a draw which took him an unbeaten lead of 6.5-4.5 in the 12 game games. congratulation anand. we all are proud of you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-5424844570142633125?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/5424844570142633125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=5424844570142633125' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/5424844570142633125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/5424844570142633125'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/10/viswanathan-anand-retains-world.html' title=''/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-5283392603874696218</id><published>2008-03-22T16:33:00.000-07:00</published><updated>2008-03-22T16:36:35.194-07:00</updated><title type='text'>tennis: Is this end of Roger's Era?</title><content type='html'>the world number one again lost! it's disappointing for Federer as well as fans. In pacific open le lost to mardy fisd(6-3,6-2)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-5283392603874696218?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/5283392603874696218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=5283392603874696218' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/5283392603874696218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/5283392603874696218'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/03/tennis-is-this-end-of-rogers-era.html' title='tennis: Is this end of Roger&apos;s Era?'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-1902959367558907698</id><published>2008-01-08T14:33:00.000-08:00</published><updated>2008-01-08T14:34:12.297-08:00</updated><title type='text'>ICC's new rules......</title><content type='html'>ICC Amendments to the cricket rule book:&lt;br /&gt;&lt;br /&gt;(1) Ricky Ponting (THE TRULY GENUINE CRICKETER OF THE CRICKET ERA AND WHOSE INTEGRITY SHOULD NOT BE DOUBTED) should be considered as the FOURTH UMPIRE. As per the new rules, FOURTH UMPIRE decision is final and will override any decisions taken by any other umpires. ON-FIELD umpires can seek the assistance of RICKY PONTING even if he is not on the field.&lt;br /&gt;&lt;br /&gt;This rule is to be made, so that every team should understand the importance of the FOURTH UMPIRE.&lt;br /&gt;&lt;br /&gt;(2) While AUSTRALIAN TEAM is bowling, If the ball flies anywhere close to the AUSTRALIAN FIELDER(WITHIN 5 metre distance), the batsman is to be considered OUT irrelevant of whether the catch was taken cleanly or grassed. Any decision for further clarification should be seeked from the FOURTH UMPIRE. This is made to ensure that the cricket is played with SPORTIVE SPIRIT by all the teams.&lt;br /&gt;&lt;br /&gt;(3) While BATTING, AUSTRALIAN players will wait for the ON-FIELD UMPIRE decisions only (even if the catch goes to the FIFTH SLIP as the ball might not have touched the bat). Each AUSTRALIAN batsman has to be out FOUR TIMES (minimum) before he can return to the pavilion. In case of THE CRICKETER WITH INTEGRITY, this can be higher.&lt;br /&gt;&lt;br /&gt;(4) UMPIRES should consider a huge bonus if an AUSTRALIAN player scores a century. Any wrong decisions can be ignored as they will be paid huge bonus and will receive the backing of the AUSTRALIAN team and board.&lt;br /&gt;&lt;br /&gt;(5) All AUSTRALIAN players are eligible to keep commenting about all players on the field and the OPPONENT TEAM should never comment as they will be spoiling the spirit of the AUSTRALIAN team. Any comments made in any other language are to be considered as RACISM only.&lt;br /&gt;&lt;br /&gt;(6) MATCH REFREE decisions will be taken purely on the AUSTRALIAN TEAM advices only. Player views from the other teams decisions will not be considered for hearing. MATCH REFEREES are to be given huge bonus if this rule is implemented.&lt;br /&gt;&lt;br /&gt;(7) NO VISITING TEAM should plan to win in AUSTRALIA. This is to ensure that the sportive spirit of CRICKET is maintained.&lt;br /&gt;&lt;br /&gt;(8) THE MOST IMPORTANT RULE: If any bowler gets RICKY PONTING -THE UNDISPUTED CRICKETER WITH INTEGTIRY IN THE GAME OF CRICKET  more than twice in a series, he will be banned for the REST OF THE SERIES. This is to ensure that the best batsman/Captain plays uninterrupted to break records and create history in the game of CRICKET.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-1902959367558907698?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/1902959367558907698/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=1902959367558907698' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/1902959367558907698'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/1902959367558907698'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2008/01/iccs-new-rules.html' title='ICC&apos;s new rules......'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-3910463791465303344</id><published>2007-03-28T00:53:00.000-07:00</published><updated>2007-03-28T01:06:02.933-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Sony Ericsson Open - Miami'/><title type='text'>all surprises</title><content type='html'>whats happening with FedExpress !!!  Just unbelievable.  But from the beginning of Miami he does not look comfortable. may be he was afraid of canas :-)&lt;br /&gt;&lt;br /&gt;on the other side Serena did a fabulous job. But I believe Henin would be able to stop her.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-3910463791465303344?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/3910463791465303344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=3910463791465303344' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3910463791465303344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/3910463791465303344'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2007/03/all-surprises.html' title='all surprises'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-6052071703118228566</id><published>2007-03-26T13:44:00.000-07:00</published><updated>2007-03-26T13:51:01.476-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='disaster'/><title type='text'>Indian Cricket</title><content type='html'>may be we were little more predictive about the Indian team. Most of the Indian fans including myself were in dream world of seeing the Blue team in final/semi finals. One way it's good that they crashed out in prilims.&lt;br /&gt;&lt;br /&gt;may be they can learn some new lessons from Bangladesh and Srilanka. Hopefully they would do well in 20*20 world cup in september, in Johannasberg, SA.&lt;br /&gt;&lt;br /&gt;I am not expecting any more Sachin,Kumble, Dhoni in the team. Wondering how Dhoni is in top 10 list :-), It's shame indeed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-6052071703118228566?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/6052071703118228566/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=6052071703118228566' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/6052071703118228566'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/6052071703118228566'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2007/03/indian-cricket.html' title='Indian Cricket'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-8061680146354227662</id><published>2007-03-21T21:21:00.000-07:00</published><updated>2007-03-21T21:23:32.482-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='All the best India'/><title type='text'>Just a ray of hope</title><content type='html'>sorry for being hypothetical.. :-)&lt;br /&gt;&lt;br /&gt;Year 1981&lt;br /&gt;1. Prince Charles got married&lt;br /&gt;2. Liverpool crowned Champions of Europe&lt;br /&gt;3. Australia lost the Ashes&lt;br /&gt;4. Pope Died&lt;br /&gt;5. 2 years later India won the world Cup!!!&lt;br /&gt;&lt;br /&gt;Year 2005&lt;br /&gt;&lt;br /&gt;1. Prince Charles got married&lt;br /&gt;2. Liverpool crowned Champions of Europe&lt;br /&gt;3. Australia lost the Ashes&lt;br /&gt;4. Pope Died&lt;br /&gt;5. 2 years later will India win the world Cup?????&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-8061680146354227662?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/8061680146354227662/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=8061680146354227662' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8061680146354227662'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8061680146354227662'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2007/03/just-ray-of-hope.html' title='Just a ray of hope'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-134066598356538854</id><published>2007-03-19T14:06:00.000-07:00</published><updated>2007-03-19T14:08:16.929-07:00</updated><title type='text'>Well deserved win</title><content type='html'>India had a convincing win though it was against the beginers Bermuda. Now the scope for India in Super8 is warm. Let's hope for the best &amp; the match against SL is not going to be easy.&lt;br /&gt;&lt;br /&gt;All the best team India.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-134066598356538854?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/134066598356538854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=134066598356538854' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/134066598356538854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/134066598356538854'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2007/03/well-deserved-win.html' title='Well deserved win'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-8100194001046777996</id><published>2007-03-19T08:24:00.000-07:00</published><updated>2007-03-19T08:28:29.690-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blistering start for India'/><title type='text'>India fighting back !!</title><content type='html'>India is fighting back strong in WC 07.  There was a threaten in the first over itself from the Bermuda team.  It was surprising the way Uttapa got out!&lt;br /&gt;&lt;br /&gt;thanks to Ganguly &amp;amp; Sehwag for the blistering start for the first time for India which the 100 crore were expecting.&lt;br /&gt;cheers cheers Blue team :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-8100194001046777996?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/8100194001046777996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=8100194001046777996' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8100194001046777996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8100194001046777996'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2007/03/india-fighting-back.html' title='India fighting back !!'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-4100167946893527475</id><published>2007-03-18T21:39:00.000-07:00</published><updated>2007-03-19T01:05:57.428-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Sony Ericsson Open - Miami'/><title type='text'>Tennis Sony Ericsson Open- Miami, FL</title><content type='html'>It's going to be a wonderful ever as all top seeded players both from men and women are participating in Miami, FL. Roger Federer is going to reign his title while Sharapova will have to prove her supremacy in tennis. She is going to have a tough time from Justin, Mauresmo and Serena.&lt;br /&gt;&lt;br /&gt;As per  my expectation Federer would lift the championships. The unforgettable defeat at Indian Wells for Roger is not going to repeat until French Open :-)&lt;br /&gt;&lt;br /&gt;All my money is for Justin in the women's side. Hopefully she will fight back to retain number 1 place.&lt;br /&gt;&lt;br /&gt;for details &lt;a href="http://www.sonyericssonopen.com/"&gt;http://www.sonyericssonopen.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-4100167946893527475?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/4100167946893527475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=4100167946893527475' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/4100167946893527475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/4100167946893527475'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2007/03/tennis-sony-ericsson-open-miami-fl.html' title='Tennis Sony Ericsson Open- Miami, FL'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1008137881623868388.post-8027124559885619639</id><published>2007-03-18T21:24:00.000-07:00</published><updated>2007-03-19T01:07:34.745-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ICC WC-India&apos;s Chances for Super 8'/><title type='text'>ICC WC Statistics -India's chances for Super -8</title><content type='html'>This is a disastrous starting for India. As a cricket lover, I did not expect this poor performance from the Blue team.&lt;br /&gt;&lt;br /&gt;Here are some statistical report for India's chances for the last 8.&lt;br /&gt;&lt;br /&gt;1. If India loses at least 1 game of the 2.&lt;br /&gt;   1.1. BAN loses both games against Bermuda &amp; SL then NRR will be considered for the 2nd     place in group B. SL will be automatically in the Su8.&lt;br /&gt;   1.2. If BAN wins against SL &amp;amp; loses against BER then, the match between IND &amp; SL is important. Again NRR comes into picture.&lt;br /&gt;&lt;br /&gt;2. If India wins both matches and BAN also wins both matches &amp;amp; SL defeats BER, then BAN will be directly into the Su-8 and NRR is considered among IND &amp;amp; SL.&lt;br /&gt;&lt;br /&gt;Here the considering the fact that SL already got a very good NRR, India must defeat BER and SL in big margin.&lt;br /&gt;&lt;br /&gt;All the best to Indian team!!&lt;br /&gt;&lt;br /&gt;for details http://cricketworldcup.indya.com/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1008137881623868388-8027124559885619639?l=sprasanth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sprasanth.blogspot.com/feeds/8027124559885619639/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1008137881623868388&amp;postID=8027124559885619639' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8027124559885619639'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1008137881623868388/posts/default/8027124559885619639'/><link rel='alternate' type='text/html' href='http://sprasanth.blogspot.com/2007/03/icc-wc-statistics-indias-chances-for.html' title='ICC WC Statistics -India&apos;s chances for Super -8'/><author><name>Prasanth</name><uri>http://www.blogger.com/profile/02674413927579998524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
