<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>javaforweb</title>
	<atom:link href="http://javaforweb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://javaforweb.wordpress.com</link>
	<description>Web Development Guide</description>
	<lastBuildDate>Thu, 12 Jan 2012 05:46:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='javaforweb.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/b471d73082fe59df041b4c8cdc7456b0?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>javaforweb</title>
		<link>http://javaforweb.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://javaforweb.wordpress.com/osd.xml" title="javaforweb" />
	<atom:link rel='hub' href='http://javaforweb.wordpress.com/?pushpress=hub'/>
		<item>
		<title>BDD using easyB, Selenium and Groovy by Rajiv Narula</title>
		<link>http://javaforweb.wordpress.com/2012/01/12/bdd-using-easyb-selenium-and-groovy-by-rajiv-narula/</link>
		<comments>http://javaforweb.wordpress.com/2012/01/12/bdd-using-easyb-selenium-and-groovy-by-rajiv-narula/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 05:22:22 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BDD]]></category>
		<category><![CDATA[Behavior Driven Development]]></category>
		<category><![CDATA[easyB]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[JBehave]]></category>
		<category><![CDATA[RSpec]]></category>
		<category><![CDATA[selenium]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=197</guid>
		<description><![CDATA[Today I got an opportunity to attend a session over BDD using easyB and Selenium. Scripting language &#8211; Groovy. It was &#8220;def test = new BDDMadeEasy(Selenium,EasyB,Groovy)&#8221; by Rajiv Narula. www.rajivnarula.com Rajiv is an Associate Director with Perceptive Informatics having 15 years of experience in dev, architectural road map, laying automation strategy etc. This was my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=197&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I got an opportunity to attend a session over BDD using easyB and Selenium.<br />
Scripting language &#8211; Groovy.</p>
<p>It was &#8220;def test = new BDDMadeEasy(Selenium,EasyB,Groovy)&#8221; by Rajiv Narula.<br />
www.rajivnarula.com</p>
<p>Rajiv is an Associate Director with Perceptive Informatics having 15 years of experience in dev, architectural road map, laying automation strategy etc.</p>
<p>This was my first appearance in a MeetUp group and I can say I am satisfied with my decision.<br />
I knew some hands on stuff over Groovy and few things about JBehave like writing stories etc..</p>
<p>I would like to share my take aways from the Session.</p>
<p>In Rajiv&#8217;s words</p>
<p>BDD ( Behavior Driven Development ) is a way that can let 3 Amigos &#8211; BAs, Developers and Testers collaborate.<br />
Software artifacts/documents like Requirement Specs, Use Cases, functional specs, flow charts, stories etc can be used to describe the content of the software but But &#8220;How software will behave under specific condition?? &#8221; none of them answers it.</p>
<p>BDD gives an answer to &#8220;How should a software will work under specific situation.&#8221;</p>
<p>BDD offers a template for defining behavior.</p>
<p>Template :-<br />
++++++++</p>
<p>Given Some precondition (Pre-conditions)</p>
<p>Some Action by actor (Steps)</p>
<p>Then some testable outcome is achieved (Expected Behavior)</p>
<p>Similar way we can have multiple conditions.</p>
<p>A Use Case can be defined as a set of scenarios and easyB scripts allow us to write stories that can implement those scenarios in a beautiful way thus giving a common platform to the Business Analyst and Tester to working on same ground.</p>
<p>Writing stories in easyB</p>
<p>writing stories&#8230; in easyB script</p>
<p>description &#8220;As simple as it gets&#8221;</p>
<p>scenario &#8220;Testing easyB setup&#8221;<br />
{</p>
<p>given &#8220;there is some precondition&#8221;, {<br />
myList = new ArrayList()<br />
}<br />
when &#8220;some steps are performed&#8221;, {<br />
myList.add(&#8216;Hello easyB&#8217;)<br />
}<br />
then &#8220;results can be validated&#8221;, {<br />
myList.size.shouldBe 1<br />
}</p>
<p>}</p>
<p>description, scenario, given, when and then are KEYWORDS. A business analyst can understand statements written in &#8220;&#8221; eg. &#8220;there is some precondition&#8221; and an Automation Tester can actually write automation code/test script with in {}e.g. { myList = new ArrayList() }</p>
<div id="attachment_208" class="wp-caption aligncenter" style="width: 310px"><a href="http://javaforweb.files.wordpress.com/2012/01/photo-2.jpg"><img class="size-medium wp-image-208" title="Greater Boston Selenium Users Group" src="http://javaforweb.files.wordpress.com/2012/01/photo-2.jpg?w=300&#038;h=226" alt="" width="300" height="226" /></a><p class="wp-caption-text">Greater Boston Selenium Users Group</p></div>
<p>Another example -</p>
<p>ThisIsSampleStory</p>
<p>description &#8220;&#8221;</p>
<p>scenario &#8220;search on google&#8221;, {<br />
given &#8220;machine is connected to internet&#8221;<br />
}</p>
<p>when &#8220;Search Rajiv on google&#8221; ,<br />
{ selenium.open(&#8220;/search?q=rajiv narula&#8221;)<br />
}</p>
<p>then &#8220;google result should bring something&#8221;, {<br />
selenium.isTextPresent(&#8220;rajiv narula&#8221;).shouldBe true<br />
}</p>
<p>So here a layer is written that will interpret this story file and execute it giving the excution results in the simple Story based format.<br />
These results can be generated in the HTML or any other format.</p>
<p>There are many things we can achieve through easyB like prioritizing the test cases using Tags, parallel script execution etc.<br />
To be frank I would like to learn more about BDD and tools like JBehave with selenium or RSpecs and Cucumber.</p>
<p>Though I personally had a feel that its a better way to let a BA and Tester work together and a way through which application behavior can be tested based on   requirement specifications.</p>
<p>Here are some of the useful links to learn BDD :-</p>
<p>JBehave and Selenium :-</p>
<p>http://blog.m.artins.net/acceptance-tests-with-jbehave-selenium-page-objects/</p>
<p>http://jbehave.org/reference/web/stable/using-selenium.html</p>
<p>http://siark.wordpress.com/2010/10/01/behaviour-driven-development-with-jbehave-web-3-selenium-and-maven-2-on-os-x-snow-leopard/</p>
<p>RSpec and Cucumber :-</p>
<p>http://blog.davidchelimsky.net/2007/05/14/an-introduction-to-rspec-part-i/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=197&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2012/01/12/bdd-using-easyb-selenium-and-groovy-by-rajiv-narula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2012/01/photo-2.jpg?w=300" medium="image">
			<media:title type="html">Greater Boston Selenium Users Group</media:title>
		</media:content>
	</item>
		<item>
		<title>Test you SHIT please @Testing Yammer</title>
		<link>http://javaforweb.wordpress.com/2011/08/04/test-you-shit-please/</link>
		<comments>http://javaforweb.wordpress.com/2011/08/04/test-you-shit-please/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 18:32:22 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=191</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=191&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<iframe src='http://www.slideshare.net/slideshow/embed_code/8687788' width='425' height='348' scrolling='no'></iframe>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=191&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2011/08/04/test-you-shit-please/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Automation Idea</title>
		<link>http://javaforweb.wordpress.com/2011/07/15/automation-idea/</link>
		<comments>http://javaforweb.wordpress.com/2011/07/15/automation-idea/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 22:26:33 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Automation Approach]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=152</guid>
		<description><![CDATA[Can we have a layer that will take care of all the Automation stuff in a smart way that it will take the manual regression test cases as commands to execute on AUT. Anyone can write dumb scripts, time needs innovation and I will think about it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=152&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Can we have a layer that will take care of all the Automation stuff in a smart way that it will take the manual regression test cases as commands to execute on AUT.<br />
Anyone can write dumb scripts, time needs innovation and I will think about it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=152&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2011/07/15/automation-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Google+ Features Demystified &#8211; Part 1</title>
		<link>http://javaforweb.wordpress.com/2011/07/09/google-features-demystified-part-1/</link>
		<comments>http://javaforweb.wordpress.com/2011/07/09/google-features-demystified-part-1/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 08:01:01 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Ashutosh Sharma Google+]]></category>
		<category><![CDATA[Google Plus]]></category>
		<category><![CDATA[Google Plus beginners]]></category>
		<category><![CDATA[Google Plus Demystified]]></category>
		<category><![CDATA[Google Plus Features]]></category>
		<category><![CDATA[Google+ Bugs]]></category>
		<category><![CDATA[Google+ Demystified part 1]]></category>
		<category><![CDATA[Google+ Features]]></category>
		<category><![CDATA[Google+ Features in a nutshell]]></category>
		<category><![CDATA[Google+ good features]]></category>
		<category><![CDATA[Google+ vs Facebook]]></category>
		<category><![CDATA[Google_ Demystified]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=154</guid>
		<description><![CDATA[First time I opened my Google+ page, I could see – An important note about Field Trial – (To Best view Images please click on them) You&#8217;re a part of a small group of people who are helping to test Google+. When you share something with people who are not yet able to use Google+, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=154&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First time I opened my Google+ page, I could see – An important note about Field Trial –</p>
<p>(To Best view Images please click on them)</p>
<p>You&#8217;re a part of a small group of people who are helping to test Google+.</p>
<p>When you share something with people who are not yet able to use Google+,</p>
<p>they will receive it via email but won&#8217;t be able to comment or engage with</p>
<p>the content like other Google+ users. They&#8217;ll be able to join Google+ as</p>
<p>we let more users in over time.</p>
<p>OK so I am now a part of Google+ or Google Plus, HURRAY! I got it I got it&#8230; Eureka did you hear something??</p>
<p>So I thought why not write a Blog Entry &#8211; Google+ De-Mystified (Well not completely may be 20% who knows may b more <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>This way they will recieve it via javaforwe Blog and will be able to comment and become familiar with some of the nice features.</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/1_11.jpg"><img class="aligncenter size-medium wp-image-164" title="1_1" src="http://javaforweb.files.wordpress.com/2011/07/1_11.jpg?w=300&#038;h=133" alt="" width="300" height="133" /></a></p>
<p>For Google+ I am picking section by section on the screen and analysing the requirements and trying to understand the functionality and need</p>
<p>of incorporating the functionality.</p>
<p>First of all Top Right Section.</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/1.jpg"><img class="aligncenter size-medium wp-image-166" title="1" src="http://javaforweb.files.wordpress.com/2011/07/1.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a></p>
<p>When I clicked the image(Looks like Account Settings actually it is Google+ Settings) on the Top Right Corner I could see 4 links.</p>
<p>Google+ Settings and Google+ Help in one section and Send feedback and Web History in second and third section.</p>
<p>I could also see Send feedback feature at the bottom right of screen and I think I am doing it one way by writing this blog post at 1:43 a.m.</p>
<p>Now I know that Google maintain a database of searches done by the users when they are logged in to their Google account.</p>
<p>IMPRESSIVE. Web History comes from it.</p>
<p>Data for an other application Google Trends also comes collectivelty from these searches.</p>
<p>Lets Go to Web History Link( Its little out of target from Google+, since it appears on Google+ page, I would like to touch it).</p>
<p>I hope it will be a good one.</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/2.jpg"><img class="aligncenter size-medium wp-image-168" title="2" src="http://javaforweb.files.wordpress.com/2011/07/2.jpg?w=300&#038;h=112" alt="" width="300" height="112" /></a></p>
<p>Here I am on their Web History Page that opens in a new tab.</p>
<p>Url: https://www.google.com/history/&#8230;.</p>
<p>This page is full of some very useful system that may help almost everyone in this world who uses more than 1 computers.</p>
<p>Need not to be dependent on Local browser Bookmarking, Google will maintain them. &#8211; Super !</p>
<p>This page has whole bunch of features related to web history or searches done using google search engine while one is logged in to ts account.</p>
<p>They have a Calander control on the right, to give functionality to user to check what they searched on a particular date.</p>
<p>They have functionality for Pause web history, Remove selected web history OR clean entire web history.</p>
<p>They have a link for Expand your Web History and I am not going to touch it at 2:44 a.m. After all curious users also love to sleep, Infact more than anyone else like to.</p>
<p>Google Trends link also appears on it.</p>
<p>I see a Bookmark Link and Lets click and see whats there <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Woah.. I land on Social Bookmarking ye ye with an import provided for Delicious&#8230;</p>
<p>We can create List, A set of tools for bookmarking is provided. But Ashutosh+ or in general Google+ is missing from the Bookmark page.</p>
<p>May be because it is not the part of Google+ project but still provides and external link from Google+ page. Good.</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/3.jpg"><img class="aligncenter size-medium wp-image-170" title="3" src="http://javaforweb.files.wordpress.com/2011/07/3.jpg?w=300&#038;h=126" alt="" width="300" height="126" /></a></p>
<p>I still have to touch Google+ Setting link which has got couple of features before that I will come back to Google+ home page</p>
<p>Now Comes Share  functionality.. Share your image, video, link or your location :-</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/6_share.jpg"><img class="aligncenter size-medium wp-image-172" title="6_Share" src="http://javaforweb.files.wordpress.com/2011/07/6_share.jpg?w=300&#038;h=198" alt="" width="300" height="198" /></a></p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/6_share_1.jpg"><img class="aligncenter size-medium wp-image-173" title="6_Share_1" src="http://javaforweb.files.wordpress.com/2011/07/6_share_1.jpg?w=248&#038;h=300" alt="" width="248" height="300" /></a></p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/6_share_2.jpg"><img class="aligncenter size-medium wp-image-174" title="6_Share_2" src="http://javaforweb.files.wordpress.com/2011/07/6_share_2.jpg?w=300&#038;h=279" alt="" width="300" height="279" /></a></p>
<p>Notification Functionality.</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/notifications.jpg"><img class="aligncenter size-medium wp-image-176" title="Notifications" src="http://javaforweb.files.wordpress.com/2011/07/notifications.jpg?w=236&#038;h=300" alt="" width="236" height="300" /></a></p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/notification.jpg"><img class="aligncenter size-medium wp-image-177" title="Notification" src="http://javaforweb.files.wordpress.com/2011/07/notification.jpg?w=300&#038;h=262" alt="" width="300" height="262" /></a></p>
<p>Number of Notifications will be represented by the Numeric digit. Same way as they are represented in Facebook</p>
<p>I see some bad behaviour here. I clicked Notification link and my profile Image&#8217;s color changed. ????</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/4.jpg"><img class="aligncenter size-medium wp-image-179" title="4" src="http://javaforweb.files.wordpress.com/2011/07/4.jpg?w=300&#038;h=61" alt="" width="300" height="61" /></a></p>
<p>Also I noticed a blur rendering of my profile image ..</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/blurimage.jpg"><img class="aligncenter size-medium wp-image-181" title="BlurImage" src="http://javaforweb.files.wordpress.com/2011/07/blurimage.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Why?</p>
<p>Account Settings.(My last entry in this blog)</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/ashutoshsharma_accountsettings.jpg"><img class="aligncenter size-medium wp-image-183" title="AshutoshSharma_AccountSettings" src="http://javaforweb.files.wordpress.com/2011/07/ashutoshsharma_accountsettings.jpg?w=300&#038;h=197" alt="" width="300" height="197" /></a></p>
<p>Clicking it we will land on Setting page with Account settings are highlighted.</p>
<p>I will keep on mining google+ features in my coming posts.</p>
<p>Its 4:03 now and this is Ashutosh Signing off from Google+</p>
<p>and going to his Bed+ mode. Caio.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=154&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2011/07/09/google-features-demystified-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/1_11.jpg?w=300" medium="image">
			<media:title type="html">1_1</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/1.jpg?w=300" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/2.jpg?w=300" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/3.jpg?w=300" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/6_share.jpg?w=300" medium="image">
			<media:title type="html">6_Share</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/6_share_1.jpg?w=248" medium="image">
			<media:title type="html">6_Share_1</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/6_share_2.jpg?w=300" medium="image">
			<media:title type="html">6_Share_2</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/notifications.jpg?w=236" medium="image">
			<media:title type="html">Notifications</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/notification.jpg?w=300" medium="image">
			<media:title type="html">Notification</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/4.jpg?w=300" medium="image">
			<media:title type="html">4</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/blurimage.jpg?w=300" medium="image">
			<media:title type="html">BlurImage</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/ashutoshsharma_accountsettings.jpg?w=300" medium="image">
			<media:title type="html">AshutoshSharma_AccountSettings</media:title>
		</media:content>
	</item>
		<item>
		<title>Madness started at 9 p.m. &#8211; Android .. TADAAAA !</title>
		<link>http://javaforweb.wordpress.com/2011/07/05/starting-android/</link>
		<comments>http://javaforweb.wordpress.com/2011/07/05/starting-android/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 05:03:57 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[SWT]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Android Sample App]]></category>
		<category><![CDATA[Android SDK]]></category>
		<category><![CDATA[Install Android]]></category>
		<category><![CDATA[JetBoy]]></category>
		<category><![CDATA[Launch Sample Android Application]]></category>
		<category><![CDATA[Starting Android]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=144</guid>
		<description><![CDATA[Midnight madness &#8230;&#8230;  started at 9 p.m. to install Android and launch a sample application ! It all started with installing pandora on my android and as usual itching started&#8230; Quickly installed mamoth size Android SDK&#8230; let me check the size&#8230;.   2.39 GB with plugins&#8230; After that installed ADT on eclipse and associated sdk [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=144&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Midnight madness &#8230;&#8230;  started at 9 p.m. to install Android and launch a sample application !</p>
<p>It all started with installing pandora on my android and as usual itching started&#8230;</p>
<p>Quickly installed mamoth size Android SDK&#8230; let me check the size&#8230;.   2.39 GB with plugins&#8230;</p>
<p>After that installed ADT on eclipse and associated sdk with the project&#8230;   fetched a sample application JetBoy in to workspace&#8230;</p>
<p>There was a lil time consumption in adding AVD to project</p>
<p>Finally got success after adding third part Add-ons</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/avd.jpg"><img class="alignnone size-medium wp-image-145" title="AVD" src="http://javaforweb.files.wordpress.com/2011/07/avd.jpg?w=300&#038;h=166" alt="" width="300" height="166" /></a></p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/avd_1.jpg"><img class="alignnone size-medium wp-image-146" title="AVD_1" src="http://javaforweb.files.wordpress.com/2011/07/avd_1.jpg?w=213&#038;h=300" alt="" width="213" height="300" /></a></p>
<p>Got help from</p>
<p><a href="http://developer.android.com/guide/developing/devices/managing-avds.html">http://developer.android.com/guide/developing/devices/managing-avds.html</a></p>
<p>And launched JetBoy.java</p>
<p>It is a game app&#8230;.  Lost badly <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://javaforweb.files.wordpress.com/2011/07/jeyboy.jpg"><img class="alignleft size-medium wp-image-147" title="JeyBoy" src="http://javaforweb.files.wordpress.com/2011/07/jeyboy.jpg?w=300&#038;h=222" alt="" width="300" height="222" /></a></p>
<p>Now I am happy&#8230; this weekend ends in a good way&#8230;.  its 12:43 a.m. and a curious mind is fed aptly ! its a good start and in coming days postmortem of Android SDK will start !</p>
<p>Happy to see console</p>
<pre>[2011-07-04 23:47:24 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read C:\AndroidManifest.xml: java.io.FileNotFoundException: C:\AndroidManifest.xml (The system cannot find the file specified)
[2011-07-04 23:47:24 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read C:\AndroidManifest.xml: java.io.FileNotFoundException: C:\AndroidManifest.xml (The system cannot find the file specified)
[2011-07-04 23:52:11 - JetBoy] ------------------------------
[2011-07-04 23:52:11 - JetBoy] Android Launch!
[2011-07-04 23:52:11 - JetBoy] adb is running normally.
[2011-07-04 23:52:11 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-04 23:52:11 - JetBoy] Failed to find an AVD compatible with target 'Android 1.5'.
[2011-07-04 23:53:13 - JetBoy] Still no compatible AVDs with target 'Android 1.5': Aborting launch.
[2011-07-04 23:53:13 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-04 23:53:39 - JetBoy] Launch canceled!
[2011-07-04 23:58:20 - JetBoy] ------------------------------
[2011-07-04 23:58:20 - JetBoy] Android Launch!
[2011-07-04 23:58:20 - JetBoy] adb is running normally.
[2011-07-04 23:58:20 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-04 23:58:20 - JetBoy] Failed to find an AVD compatible with target 'Android 1.5'.
[2011-07-04 23:58:42 - JetBoy] Still no compatible AVDs with target 'Android 1.5': Aborting launch.
[2011-07-04 23:58:42 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-04 23:58:53 - JetBoy] Launch canceled!
[2011-07-04 23:59:39 - JetBoy] ------------------------------
[2011-07-04 23:59:39 - JetBoy] Android Launch!
[2011-07-04 23:59:39 - JetBoy] adb is running normally.
[2011-07-04 23:59:39 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-05 00:00:42 - JetBoy] Launch canceled!
[2011-07-05 00:12:37 - JetBoy] ------------------------------
[2011-07-05 00:12:37 - JetBoy] Android Launch!
[2011-07-05 00:12:37 - JetBoy] adb is running normally.
[2011-07-05 00:12:37 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-05 00:12:37 - JetBoy] Failed to find an AVD compatible with target 'Android 1.5'.
[2011-07-05 00:14:22 - SDK Manager] Created AVD 'FirstTest' based on Google APIs (Google Inc.), ARM (armeabi) processor,
[2011-07-05 00:14:22 - SDK Manager] with the following hardware config:
[2011-07-05 00:14:22 - SDK Manager] hw.sdCard=yes
[2011-07-05 00:14:22 - SDK Manager] hw.lcd.density=240
[2011-07-05 00:14:22 - SDK Manager] vm.heapSize=24
[2011-07-05 00:17:11 - JetBoy] Still no compatible AVDs with target 'Android 1.5': Aborting launch.
[2011-07-05 00:17:11 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-05 00:17:14 - JetBoy] Launch canceled!
[2011-07-05 00:17:29 - JetBoy] ------------------------------
[2011-07-05 00:17:29 - JetBoy] Android Launch!
[2011-07-05 00:17:29 - JetBoy] adb is running normally.
[2011-07-05 00:17:29 - JetBoy] Performing com.example.android.jetboy.JetBoy activity launch
[2011-07-05 00:17:29 - JetBoy] Automatic Target Mode: launching new emulator with compatible AVD 'FirstTest'
[2011-07-05 00:17:29 - JetBoy] Launching a new emulator with Virtual Device 'FirstTest'
[2011-07-05 00:17:35 - JetBoy] New emulator found: emulator-5554
[2011-07-05 00:17:35 - JetBoy] Waiting for HOME ('android.process.acore') to be launched...
[2011-07-05 00:19:14 - JetBoy] HOME is up on device 'emulator-5554'
[2011-07-05 00:19:14 - JetBoy] Uploading JetBoy.apk onto device 'emulator-5554'
[2011-07-05 00:19:16 - JetBoy] Installing JetBoy.apk...
[2011-07-05 00:20:25 - JetBoy] Success!
[2011-07-05 00:20:25 - JetBoy] Starting activity com.example.android.jetboy.JetBoy on device emulator-5554
[2011-07-05 00:20:30 - JetBoy] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.android.jetboy/.JetBoy }
Few useful links to start with :-
<a href="http://www.talkandroid.com/android-sdk-install-guide/">http://www.talkandroid.com/android-sdk-install-guide/</a>
other tabs I closed <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />
Have to sleep now.. Tomorrow have to get back to my Manual Testing task !
And the Song I listen to all this time is
Walk Away - Five Fingers
Just walk away make it easy on yourself, 
Just walk away please release me from this hell, 
Just walk away there's just nothing left to feel, 
Just walk away pretend that none of this is real !</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=144&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2011/07/05/starting-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/avd.jpg?w=300" medium="image">
			<media:title type="html">AVD</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/avd_1.jpg?w=213" medium="image">
			<media:title type="html">AVD_1</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/07/jeyboy.jpg?w=300" medium="image">
			<media:title type="html">JeyBoy</media:title>
		</media:content>
	</item>
		<item>
		<title>Chrome Voice recognition an insight !</title>
		<link>http://javaforweb.wordpress.com/2011/06/18/chrome-voice-recognition-an-insight/</link>
		<comments>http://javaforweb.wordpress.com/2011/06/18/chrome-voice-recognition-an-insight/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 17:51:25 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[chrome flca]]></category>
		<category><![CDATA[chrome phonetic support]]></category>
		<category><![CDATA[chrome speech recognition]]></category>
		<category><![CDATA[chrome speech recognition phonetic support]]></category>
		<category><![CDATA[flca]]></category>
		<category><![CDATA[flca chrome]]></category>
		<category><![CDATA[free lossless audio codec]]></category>
		<category><![CDATA[html5 voice api]]></category>
		<category><![CDATA[speech recognition reviews]]></category>
		<category><![CDATA[Voice Recognition]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=130</guid>
		<description><![CDATA[As I promised myself to dig more about Chrome&#8217;s Voice recognition, I have started it already after having a cup of tea and Honey Nut Cherios. By the way I found them very tasty. Coming back to Chrome, first thing I found is their code trunk : http://src.chromium.org/viewvc/chrome/trunk/src/content/browser/speech/ Here is the link to speech recognition speech_recognizer.cc [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=130&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As I promised myself to dig more about Chrome&#8217;s Voice recognition, I have started it already after having a cup of tea and Honey Nut Cherios. By the way I found them very tasty.<br />
Coming back to Chrome, first thing I found is their code trunk :</p>
<p>http://src.chromium.org/viewvc/chrome/trunk/src/content/browser/speech/</p>
<p>Here is the link to speech recognition speech_recognizer.cc</p>
<p>http://src.chromium.org/viewvc/chrome/trunk/src/content/browser/speech/speech_recognizer.cc?view=log</p>
<p>Mugging it more I came to know they are using FLAC &#8211; Free Lossless Audio Codec, here is the link</p>
<p>http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec</p>
<p>Checking more about FLAC I came to know it compress audio by 50% but the good thing is it does not lose a single bit during the process.</p>
<p>If you want to test Chrome Voice Recognition, checkout this out</p>
<p>http://slides.html5rocks.com/#speech-input</p>
<p><a href="http://javaforweb.files.wordpress.com/2011/06/html5rocks1.jpg"><img class="alignnone size-medium wp-image-136" title="HTML5Rocks" src="http://javaforweb.files.wordpress.com/2011/06/html5rocks1.jpg?w=300&#038;h=151" alt="" width="300" height="151" /></a></p>
<p>Then I scratched my itching and started to search for a site where I can find some phonetic sounds that I used on HTML5Rocks.</p>
<p>Here is the Link</p>
<p>http://www.uiowa.edu/~acadtech/phonetics/english/frameset.html</p>
<p>I used Phonetics in American English, Spanish and German</p>
<p>I tried few words like ball, taboo, rub , goose, ago, dear and much more .. here are the results</p>
<p>ball &#8211; lol<br />
taboo &#8211; taboo<br />
rub &#8211; various attempts give krupp, growth,<br />
goose &#8211; who is<br />
ago &#8211; google and piccola (God what is this?)<br />
dear &#8211; dear</p>
<p>Results are not impressive !!! Damn&#8230;&#8230;&#8230;&#8230;.. !</p>
<p>My sincere advice to them, please please please do a sincere alpha testing&#8230; get people on board from various countries and see if they can extend support for<br />
various phonetics.. BEFORE that see what improvements are required in the original APIs.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=130&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2011/06/18/chrome-voice-recognition-an-insight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2011/06/html5rocks1.jpg?w=300" medium="image">
			<media:title type="html">HTML5Rocks</media:title>
		</media:content>
	</item>
		<item>
		<title>Chrome&#8217;s Voice recognition &#8211; could it be messy?</title>
		<link>http://javaforweb.wordpress.com/2011/06/17/chromes-voice-recognition-could-it-be-messy/</link>
		<comments>http://javaforweb.wordpress.com/2011/06/17/chromes-voice-recognition-could-it-be-messy/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 19:47:33 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chrome Voice Mess]]></category>
		<category><![CDATA[Chrome Voice Recognition Quick Test]]></category>
		<category><![CDATA[Chrome Voice Recognition Support]]></category>
		<category><![CDATA[Chrome Voice Support Result]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Search Engine Voice Support]]></category>
		<category><![CDATA[Testing Chrome voice support]]></category>
		<category><![CDATA[Voice Recognition]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=126</guid>
		<description><![CDATA[Now that Google Chrome is out with the voice recognition support and I am curious about many things e.g. like how they are handling accents around the world. The biggest challenge(they must be have accessed it already) could be Indian, Chinese, Spanish, German english and accent. I tested various words with my Beats earphone/microphone and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=126&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now that Google Chrome is out with the voice recognition support and I am curious about many things e.g. like how they are handling accents around the world. The biggest challenge(they must be have accessed it already) could be Indian, Chinese, Spanish, German english and accent.</p>
<div id="attachment_128" class="wp-caption alignnone" style="width: 501px"><a href="http://javaforweb.files.wordpress.com/2010/07/google_voice_recognition.jpg"><img class="size-large wp-image-128 " title="Google_Voice_Recognition" src="http://javaforweb.files.wordpress.com/2010/07/google_voice_recognition.jpg?w=491&#038;h=244" alt="" width="491" height="244" /></a><p class="wp-caption-text">Google Chrome Voice Recognition Support</p></div>
<p>I tested various words with my Beats earphone/microphone and testing it over Lenovo T410 with genuine Audio driver (I am not sure if they care about all this). But the results came are not good. Few word that Chrome detected clearly on the first go were &#8220;Hello&#8221; &amp; &#8220;John&#8221;.</p>
<p>One thing I am sure about is auto search suggestions below original search given by it are absolutely vague .. like below &#8220;Hello&#8221; it suggests &#8220;I will&#8221; Below &#8220;Dance&#8221; it gives &#8220;Jazz&#8221; and below that &#8220;Dancing&#8221;.<br />
One thing is really freaky&#8230; please check the Image<a href="http://javaforweb.files.wordpress.com/2010/07/googlechromesdevilvoicerecognition.jpg"><img class="alignnone size-large wp-image-127" title="GoogleChrome'sDevilVoiceRecognition" src="http://javaforweb.files.wordpress.com/2010/07/googlechromesdevilvoicerecognition.jpg?w=491&#038;h=223" alt="" width="491" height="223" /></a></p>
<p>I would like to know about the APIs and algorithms they are using for Voice Recognition. Weekend is coming and I will be after it. That gives me ultimate pleasure wor</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=126&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2011/06/17/chromes-voice-recognition-could-it-be-messy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2010/07/google_voice_recognition.jpg?w=1024" medium="image">
			<media:title type="html">Google_Voice_Recognition</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2010/07/googlechromesdevilvoicerecognition.jpg?w=1024" medium="image">
			<media:title type="html">GoogleChrome&#039;sDevilVoiceRecognition</media:title>
		</media:content>
	</item>
		<item>
		<title>TremendousX &#8211; Beyond The Imagination !!</title>
		<link>http://javaforweb.wordpress.com/2009/08/30/tremendousxn/</link>
		<comments>http://javaforweb.wordpress.com/2009/08/30/tremendousxn/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 11:10:09 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[tremendousx]]></category>
		<category><![CDATA[tremendousx beyong the imagination]]></category>
		<category><![CDATA[tremendousx software development]]></category>
		<category><![CDATA[tremendousx total it solution]]></category>
		<category><![CDATA[web development tremendousx]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=122</guid>
		<description><![CDATA[Hello Friends After one year of long time I am here again. This time to tell you about Our Web Design and Software development Unit. Please visit &#8211;  http://www.tremendousx.com/ In this one year we got a good experience in the local market. We are exploring more opportunities in India and Abroad too. We have an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=122&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello Friends</p>
<p>After one year of long time I am here again. This time to tell you about Our Web Design and Software development Unit.</p>
<p>Please visit &#8211;  <a title="TremendousX - beyond the Imagination" href="http://www.tremendousx.com/" target="_blank">http://www.tremendousx.com/</a></p>
<p>In this one year we got a good experience in the local market. We are exploring more opportunities in India and Abroad too. We have an experienced team of very good developers and good service providers. I started as an IT consultant in the same.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=122&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2009/08/30/tremendousxn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>
	</item>
		<item>
		<title>MDA- Model Driven Architecture for Software Devlopment</title>
		<link>http://javaforweb.wordpress.com/2008/06/08/mda/</link>
		<comments>http://javaforweb.wordpress.com/2008/06/08/mda/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 10:46:53 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[MDA]]></category>
		<category><![CDATA[OMG]]></category>
		<category><![CDATA[Model Driven Architecture]]></category>
		<category><![CDATA[OMG MDA]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=105</guid>
		<description><![CDATA[In this post I will discuss about Model Driven Architecture and its potential in building big projects at rapid pace with high proficiency. Experienced application developers often invest more time in building models than they do in actually writing code. Well-constructed models make it easier to deliver large, complex enterprise systems on time and within [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=105&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code></p>
<p></code></p>
<p><a href="http://javaforweb.files.wordpress.com/2008/06/untitled1.jpg"></a><a href="http://javaforweb.files.wordpress.com/2008/06/untitled2.jpg"></a><a href="http://javaforweb.files.wordpress.com/2008/06/untitled4.jpg"></a>In this post I will discuss about Model Driven Architecture and its potential in building big projects at rapid pace with high proficiency.</p>
<p>Experienced application developers often invest more time in building models than they do in actually writing code. Well-constructed models make it easier to deliver large, complex enterprise systems on time and within budget.<br />
            <a href="http://javaforweb.files.wordpress.com/2008/06/mda4.jpg"><img class="alignnone size-medium wp-image-107" src="http://javaforweb.files.wordpress.com/2008/06/mda4.jpg?w=300&#038;h=296" alt="MDA-OMG" width="300" height="296" /></a></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:small;"><span style="font-family:Times New Roman;">MDA is a framework advanced by the Object Management Group (OMG) allows developers to build systems according to their core business logic and data—independently of any particular hardware, operating system, or middleware.</span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span><span style="font-size:small;font-family:Times New Roman;">This framework is based on UML and other industry standards for visualizing, storing, and exchanging software designs and models.</span><span style="font-size:small;"><span style="font-family:Times New Roman;">This Framework emphasizes on <strong>importance of models in the software development process. </strong></span></span></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:small;font-family:Times New Roman;"> </span></strong><strong><span style="font-size:small;"><span style="font-family:Times New Roman;">In MDA the software development is done by evolving models of the system to be developed.</span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:small;font-family:Times New Roman;">              </span></strong><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"> MDA software development life cycle</span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;">             <a href="http://javaforweb.files.wordpress.com/2008/06/untitled1.jpg"><img class="alignnone size-medium wp-image-108" src="http://javaforweb.files.wordpress.com/2008/06/untitled1.jpg?w=217&#038;h=300" alt="MDA Devlopment Cycle " width="217" height="300" /></a></span></span></strong><strong></strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><span style="font-size:small;">MDA identifies same process that is present in traditional software development for developing a System.</span></span></span></strong></p>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><span style="font-size:small;"> T</span><span style="font-size:small;">he following three models are at the core of the MDA.</span></span></span></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<p> </p>
<div><strong></strong></div>
<p><strong></strong></p>
<p> </p>
<div><strong></strong></div>
<p> </p>
<div><strong></strong></div>
<p><strong></strong></p>
<p> </p>
<div><strong></strong></div>
<div><strong><span style="font-size:14pt;"></span></strong></div>
<p><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"> </span><span style="font-size:x-small;">1) Platform Independent Model</span></p>
<p style="margin:auto 0;"><span style="font-size:x-small;"><span style="font-weight:normal;">2) </span>Platform Specific Model</span></p>
<p style="margin:auto 0;"><span style="font-size:x-small;"><span style="font-weight:normal;">3) </span>Code</span></p>
<p class="doctext" style="margin:auto 0;"><span style="text-decoration:underline;"><span style="font-size:small;">Platform Independent Model</span></span></p>
<p class="doctext" style="margin:auto 0;"><span style="font-size:small;">The first model that MDA defines is a model with a high level of abstraction that is independent of any implementation technology. This is called a </span><a name="idd1e2192"></a><span style="font-size:small;">Platform Independent Model (</span><a name="idd1e2198"></a><span style="font-size:small;">PIM).</span></p>
<p class="doctext" style="margin:auto 0;"><span style="text-decoration:underline;"><span style="font-size:small;">Platform Specific Model</span></span></p>
<p class="doctext" style="margin:auto 0;"><span style="font-size:small;">PIM is </span><span style="font-size:small;">transformed into one or more </span><span style="font-size:small;">Platform Specific Models (</span><span style="font-size:small;">PSMs). A PSM is tailored to specify your system in terms of the implementation constructs that are available in one specific implementation technology. For example, an EJB PSM is a model of the system in terms of EJB structures. It typically contains EJB-specific terms like &#8220;home interface,&#8221; &#8220;entity bean,&#8221; &#8220;session bean,&#8221; and so on. A relational database PSM includes terms like &#8220;table,&#8221; &#8220;column,&#8221; &#8220;foreign key,&#8221; and so on.</span></p>
<p style="margin:auto 0;"><span style="text-decoration:underline;"><span style="font-size:x-small;">Code</span></span></p>
<p style="margin:auto 0;"><span style="font-size:small;">This is the final step in the development is the </span><a name="idd1e2281"></a><span style="font-size:small;">transformation of each PSM to </span><a name="idd1e2288"></a><span style="font-size:small;">code. Because a PSM fits its technology rather closely, this transformation is relatively straightforward.</span></p>
<p class="doctext" style="margin:auto 0;"><span style="font-size:small;">At every step the level of Abstraction increases. PIM, PSM, and code are shown as artifacts of different steps in the development life cycle.</span></p>
<p class="doctext" style="margin:auto 0;"><span style="font-size:small;"> </span></p>
<p class="doctext" style="margin:auto 0;"><span style="font-size:small;"><span>                       </span><span style="text-decoration:underline;">The three major steps in the MDA development process</span></span></p>
<p>             <a href="http://javaforweb.files.wordpress.com/2008/06/untitled4.jpg"><img class="alignnone size-medium wp-image-111" src="http://javaforweb.files.wordpress.com/2008/06/untitled4.jpg?w=300&#038;h=59" alt="MDA Devloment Cycle" width="300" height="59" /></a><strong></strong></p>
<p><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"> </span></span></strong><span style="color:#ffffff;"><strong><span><span style="font-size:small;"><span style="font-family:Times New Roman;">Rational product support for MDAs</span></span></span></strong></span></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><span style="font-size:10pt;color:#ffffff;font-family:Verdana;">IBM Rational software has several products that support MDA and Model Driven Development (MDD) in varying capacities. These tools fall into the following basic categories:</span></span></span></strong></div>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"> </span></span></strong></div>
<p> </p>
<p></span></div>
<p> </p>
<p></span></span></strong> </div>
<p></span></span></strong> </div>
<p></span></span></strong> </div>
<p></span></span></strong> </div>
<p></span></span></strong></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><span style="font-family:Times New Roman;"></p>
<div><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"> </span></span></strong></div>
<p></span></span></span></strong></div>
<p></span></span></strong></div>
<p></span></span></strong></div>
<p></span></span></strong></div>
<p></span></span></strong></div>
<p><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><span style="font-family:Times New Roman;"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"><strong><span style="font-size:8.5pt;color:#ffffff;font-family:Verdana;">General-purpose</span></strong></p>
<p></span></span></strong></span></span> </p>
<p></span></strong></span></p>
<p class="doctext" style="margin:auto 0;"><strong><span style="font-size:8.5pt;color:#ffffff;font-family:Verdana;">Domain-specific</span></strong></p>
<p class="doctext" style="margin:auto 0;"><strong><span style="font-size:8.5pt;color:#ffffff;font-family:Verdana;">Supporting</span></strong></p>
<p class="doctext" style="margin:auto 0;"><span><span style="color:#ffffff;"><strong><span style="text-decoration:underline;"><span style="font-size:10pt;font-family:Verdana;">Rational Software Architect</span></span></strong><span style="font-size:10pt;font-family:Verdana;"> supports both the principles of MDA as well as the standards upon which MDA is based<strong>. It adds full support for MDD, including UML Version 2.0 modeling, code generation, patterns and model transformations, and a new approach to implementing the MDA style of development.</strong></span></span></span></p>
<p class="doctext" style="margin:auto 0;"><span style="font-size:10pt;color:#ffffff;font-family:Verdana;">In <strong>general purpose category</strong> for Java™-based MDA applications IBM provide </span></p>
<p class="doctext" style="margin:auto 0;"><span><span style="color:#ffffff;"><strong><span style="text-decoration:underline;"><span style="font-size:10pt;font-family:Verdana;">MDA toolkit for Rational XDE Java</span></span></strong><strong><span style="font-size:10pt;font-family:Verdana;"> </span></strong><span style="font-size:10pt;font-family:Verdana;">which is an Eclipse plug-in that complements existing patterns and code template features and adds some additional capabilities.</span></span></span></p>
<p class="doctext" style="margin:auto 0;"><span style="font-size:10pt;color:#ffffff;font-family:Verdana;">In the <strong>domain-specific category <span style="text-decoration:underline;">IBM Rational System Developer</span> </strong>provides a complete UML-based design and development environment optimized for engineering and other types of technical applications developed in C or C++.</span></p>
<p class="MsoNormal" style="margin:0;"><span><span style="color:#ffffff;"><span style="font-size:10pt;font-family:Verdana;">In the supporting category, </span><strong><span style="font-size:10pt;font-family:Verdana;"><a href="http://www-306.ibm.com/software/integration/wbimodeler/"><span>IBM WebSphere Business Modeler</span></a></span></strong><span style="font-size:10pt;font-family:Verdana;"> is used to model and simulate business processes. As new business processes are developed, models can be exported from the tool and imported into Rational Software Architect or Rational Rose XDE Developer to drive an MDA development process.</span></span></span></p>
<p class="doctext" style="margin:auto 0;"><strong><span style="font-size:10pt;color:#ffffff;font-family:Verdana;">MDA Faq’s Visit</span></strong></p>
<p class="doctext" style="margin:auto 0;"><strong><span style="font-size:10pt;color:#ffffff;font-family:Verdana;"><a href="http://www.omg.org/mda/faq_mda.htm">http://www.omg.org/mda/faq_mda.htm</a></span></strong></p>
<p class="doctext" style="margin:auto 0;"><strong><span style="font-size:10pt;color:#ffcc99;font-family:Verdana;">Java Tutorials by Ashutosh Sharma pls visit:</span></strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:10pt;color:#000000;font-family:Verdana;"><a href="http://sharma.ashutosh84.googlepages.com/"><span style="color:#ffffff;">http://sharma.ashutosh84.googlepages.com</span></a> </span></strong></p>
<p> </p>
<p> </p>
<p></span></strong></span> </p>
<p></span></strong></span> </p>
<p></span></strong></span> </p>
<p></span></strong></div>
<p></span> </p>
<p></span></strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/javaforweb.wordpress.com/105/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/javaforweb.wordpress.com/105/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=105&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2008/06/08/mda/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2008/06/mda4.jpg?w=300" medium="image">
			<media:title type="html">MDA-OMG</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2008/06/untitled1.jpg?w=217" medium="image">
			<media:title type="html">MDA Devlopment Cycle </media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2008/06/untitled4.jpg?w=300" medium="image">
			<media:title type="html">MDA Devloment Cycle</media:title>
		</media:content>
	</item>
		<item>
		<title>Tomcat &#8211; Is this an Application Server ?</title>
		<link>http://javaforweb.wordpress.com/2008/06/05/apache-tomcat/</link>
		<comments>http://javaforweb.wordpress.com/2008/06/05/apache-tomcat/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 13:03:15 +0000</pubDate>
		<dc:creator>javaforweb</dc:creator>
				<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[Application Server]]></category>
		<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[Web Server]]></category>

		<guid isPermaLink="false">http://javaforweb.wordpress.com/?p=95</guid>
		<description><![CDATA[In this post i&#8217;ll discuss about Apache Tomcat Web Server and look in to its extent for support in J2EE Environment. Apache Tomcat is one of the most popular options for lightweight development scenarios,and in many cases meets the need for an application server, even though it is technically a Web server.Java EE extends Java Platform, Standard Edition (Java [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=95&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://javaforweb.files.wordpress.com/2008/06/j2eejms.jpg"></a><a href="http://javaforweb.files.wordpress.com/2008/06/eis-in-j2ee.jpg"></a></p>
<p>In this post i&#8217;ll discuss about Apache Tomcat Web Server and look in to its extent for support in J2EE Environment.</p>
<p>Apache Tomcat is one of the most popular options for lightweight development scenarios,and in many cases meets the need for an application server, even though it is technically a Web server.Java EE extends Java Platform, Standard Edition (Java SE) to support Web services, an enterprise component model, management APIs, and communication protocols for designing and implementing service-oriented architectures, distributed applications, and Web applications.</p>
<p>A compliant Java EE application server must support features such as an Enterprise JavaBeans (EJB) server and container; JNDI capabilities; a Java Message Service (JMS) framework; a Java Transaction API (JTA) framework; and J2EE Connector Architecture. Java EE servers usually support a hierarchical classloader architecture enabling such functionality as EJB loading/reloading, WAR loading/reloading, manifest-specified utilities, and so on.</p>
<p>Java EE defines containers for client applications, servlets, and EJB components. These containers provide structure and functionality that facilitate the deployment, persistence, and execution of supported components. The J2EE Connector Architecture enables a provider of an enterprise system to expose the system using a standard interface known as a resource adapter.</p>
<p>Using a Java EE server(Application Server) gives you the convenience of hosting a system in a pre-tested environment that offers all of the Java enterprise development services. In some cases, however, the Java EE server brings unnecessary overhead to an execution environment that only requires one or two of these services.</p>
<p>For instance, many Java-based Web applications are deployed to environments that only support the technologies found in a Web server/container, such as servlets, JSPs, and JDBC. In these scenarios you might choose to construct a system piecemeal, using sundry frameworks and providers.</p>
<p><strong>Some developers would choose to use Tomcat in place of the Java EE application server given these environmental constraints. </strong></p>
<h2>Web applications vs. enterprise applications</h2>
<p>For some, the confusion over Tomcat&#8217;s definition points to the deeper question of what differentiates an enterprise application from a Web application. Traditionally, a Java enterprise application is defined as a combination of the following components and technologies:</p>
<ul>
<li>EAR files</li>
<li>Java Servlets</li>
<li>JavaServer Pages or JavaServer Faces</li>
<li>Enterprise JavaBeans (EJB)</li>
<li>Java Authentication and Authorization Service (JAAS)</li>
<li>J2EE Connector Architecture</li>
<li>JavaBeans Activation Framework (JAF)</li>
<li>JavaMail</li>
<li>Java Message Service (JMS)</li>
<li>Java Persistence API (JPA)</li>
<li>Java Transaction API (JTA)</li>
<li>The Java Management Extensions (JMX) API</li>
<li>Java API for XML Processing (JAXP)</li>
<li>The Java API for XML-based RPC (JAX-RPC)</li>
<li>The Java Architecture for XML Binding (JAXB)</li>
<li>The SOAP with Attachments API for Java (SAAJ)</li>
<li>Java Database Connectivity (JDBC) framework</li>
</ul>
<p>A Java Web application, meanwhile, is said to combine a <em>subset</em> of Java enterprise application components and technologies, namely:</p>
<ul>
<li>WAR files</li>
<li>Java Servlets</li>
<li>JavaServer Faces or JavaServer Pages</li>
<li>Java Database Connectivity (JDBC) framework</li>
</ul>
<p><strong>In a typical Java EE Web application, an HTML client posts a request to a server where the request is handled by the Web container of the application server. The Web container invokes the servlet that is configured to handle the specific context of the request. </strong></p>
<p>Once the servlet has received the initial request, some form of request dispatching ensues in order to perform the necessary business logic for completing the request. One or more business services or components are then invoked to perform business logic.</p>
<p>Most business services or components require access to some form of data storage or information system. Oftentimes an abstraction layer between the business service and the data store is provided in order to protect against future changes in the data store. DAOs (data access objects) are often employed as data abstraction components in this situation.</p>
<p>When the DAO invocation step is complete, the response data is passed back up the chain of command, usually as one or more Java beans. The Java beans are then passed to some type of state machine and/or view manager in order to organize and format the markup response. When processing is complete for a given request, a formatted response is passed back to the HTML client.</p>
<p>Now, suppose we add a requirement to the application for asynchronous messaging between business service components. In a Java-based system, this would typically be handled using the Java Message Service (JMS) as shown in figure :</p>
<p><a href="http://javaforweb.files.wordpress.com/2008/06/j2eejms.jpg"><img class="alignnone size-medium wp-image-96" src="http://javaforweb.files.wordpress.com/2008/06/j2eejms.jpg?w=300&#038;h=189" alt="JMS in J2EE Architecture" width="300" height="189" /></a></p>
<p><strong>Most Web servers do not offer JMS as a standard feature, but it is simple enough to add a JMS implementation to a Web server environment.</strong></p>
<p>The application scenario depicted in Figure above could be handled quite easily with just a Web server providing a servlet engine and JSP engine.</p>
<p>Now we add the requirement for connectivity between business services and disparate enterprise information systems. <strong>Java EE offers the Java Connector Architecture as a common standard to meet this challenge.</strong></p>
<p><a href="http://javaforweb.files.wordpress.com/2008/06/eis-in-j2ee.jpg"><img class="alignnone size-medium wp-image-97" src="http://javaforweb.files.wordpress.com/2008/06/eis-in-j2ee.jpg?w=300&#038;h=197" alt="EIS in J2EE Architecture" width="300" height="197" /></a></p>
<p>The architecture is now approaching a complexity that is arguably better suited for a Java EE application server.</p>
<p><strong><span style="text-decoration:underline;">A Web server such as Tomcat could possibly be used in combination with other frameworks to meet the requirements, but system management and monitoring complications might make the server/framework mix impractical. </span></strong></p>
<p>Figure presents a moderately complex, Java-based, service-oriented architecture employing all of the technologies along with communication between multiple WAR deployments, EJBs, and Web services.</p>
<p><a href="http://javaforweb.files.wordpress.com/2008/06/webservicesmultiplewarsejbs.jpg"><img class="alignnone size-medium wp-image-98" src="http://javaforweb.files.wordpress.com/2008/06/webservicesmultiplewarsejbs.jpg?w=280&#038;h=300" alt="Webservices, EJBs, Multiple WAR in J2EE Architecture" width="280" height="300" /></a></p>
<p>The architecture in Figure above has entered the realm of complexity that requires a tested, scalable, manageable Java EE enterprise application server. Once again, a development team with the proper skill level <em>could</em> use Tomcat for the Web tier and piece together technologies and frameworks to support the business and data tiers.</p>
<p>What i personally feel is to support this type of architecture using web server is Impractical. But Most of the tasks that are involved in J2EE environment can be supported by Apache Tomcat Web Server !!</p>
<p>Java Tutorials by Ashutosh Sharma, please visit :</p>
<p><a href="http://sharma.ashutosh84.googlepages.com" target="_blank">http://sharma.ashutosh84.googlepages.com</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/javaforweb.wordpress.com/95/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/javaforweb.wordpress.com/95/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javaforweb.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javaforweb.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javaforweb.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javaforweb.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javaforweb.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javaforweb.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javaforweb.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javaforweb.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javaforweb.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javaforweb.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javaforweb.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javaforweb.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javaforweb.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javaforweb.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javaforweb.wordpress.com&amp;blog=3123563&amp;post=95&amp;subd=javaforweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javaforweb.wordpress.com/2008/06/05/apache-tomcat/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/768edbc654b31bad08e970add8fc2b97?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">javaforweb</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2008/06/j2eejms.jpg?w=300" medium="image">
			<media:title type="html">JMS in J2EE Architecture</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2008/06/eis-in-j2ee.jpg?w=300" medium="image">
			<media:title type="html">EIS in J2EE Architecture</media:title>
		</media:content>

		<media:content url="http://javaforweb.files.wordpress.com/2008/06/webservicesmultiplewarsejbs.jpg?w=280" medium="image">
			<media:title type="html">Webservices, EJBs, Multiple WAR in J2EE Architecture</media:title>
		</media:content>
	</item>
	</channel>
</rss>
