<?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>Just Sharing Thoughts...</title>
	<atom:link href="http://vspace.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vspace.wordpress.com</link>
	<description>A vision without skill is like a day dreaming...</description>
	<lastBuildDate>Tue, 23 Sep 2008 08:33:50 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='vspace.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/800ffa44319da7d24ffc13c203b3639c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Just Sharing Thoughts...</title>
		<link>http://vspace.wordpress.com</link>
	</image>
			<item>
		<title>Thread-safety issue in Servlets</title>
		<link>http://vspace.wordpress.com/2008/09/23/thread-safety-issue-in-servlets/</link>
		<comments>http://vspace.wordpress.com/2008/09/23/thread-safety-issue-in-servlets/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 08:31:08 +0000</pubDate>
		<dc:creator>Vijay Kumar</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://vspace.wordpress.com/?p=12</guid>
		<description><![CDATA[Generally, the thread-safety issue breaks down like this:
Local variables:
thread-safe in any context, servlet or otherwise
Instance variables:
not normally thread-safe, thread safe in servlets implementing the
SingleThreadedModel.  But since as Corey mentions, most containers will
create multiple copies of your servlet (each with it&#8217;s own copy of the
instance variables) as simultaneous requests come in, instance variables
become essentially useless for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=12&subd=vspace&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Generally, the thread-safety issue breaks down like this:</p>
<p>Local variables:<br />
thread-safe in any context, servlet or otherwise</p>
<p>Instance variables:<br />
not normally thread-safe, thread safe in servlets implementing the<br />
SingleThreadedModel.  But since as Corey mentions, most containers will<br />
create multiple copies of your servlet (each with it&#8217;s own copy of the<br />
instance variables) as simultaneous requests come in, instance variables<br />
become essentially useless for sharing data outside the scope of a single<br />
method call (the main reason they are used in servlets).</p>
<p>Static variables:<br />
not thread-safe.  Even the SingleThreadedModel does not help, since most<br />
containers will again create several copies of your servlet to guarantee<br />
acceptable performance, and those copies will all share the same static<br />
variables associated with the servlet&#8217;s class, you must manually synchronize<br />
access to them to be thread-safe.</p>
<p>Request scope attributes:<br />
thread-safe by default, the container handles each request with a single<br />
worker thread, even when it&#8217;s forwarded or included, the RequestDispatcher<br />
interface takes care of marshalling the Request object safely.  You have to<br />
do strange things, like passing the request object out to an external<br />
object, to be at risk here.</p>
<p>Session scope attributes:<br />
not thread-safe.  The user can open multiple browser windows, which under<br />
some configurations will all share the same cookies (thus the same<br />
HttpSession object on the server).  Your page may also use frames, leading<br />
to the same problem.  Or impatient users may hit the refresh button on your<br />
page, again same problem.  Multiple accesses by simultaneous requests to the<br />
same HttpSession object.</p>
<p>Context scope attributes:<br />
not thread safe.  All servlets in the webapp share these, so they&#8217;re clearly<br />
at risk of frequent multi-threaded access.</p>
<p>access to any sort of common resource (like an open socket, a file on the<br />
hard disk, etc.):<br />
not thread-safe.  Multiple requests coming in for any servlet that accesses<br />
them can generate concurrent access.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vspace.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vspace.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vspace.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vspace.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vspace.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vspace.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vspace.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vspace.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vspace.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vspace.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=12&subd=vspace&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vspace.wordpress.com/2008/09/23/thread-safety-issue-in-servlets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/424062b8b5fc4ce439100f3a960ad73b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vspace</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple approach to relational database design</title>
		<link>http://vspace.wordpress.com/2007/02/14/simple-approach-to-relational-database-design/</link>
		<comments>http://vspace.wordpress.com/2007/02/14/simple-approach-to-relational-database-design/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 07:00:54 +0000</pubDate>
		<dc:creator>Vijay Kumar</dc:creator>
		
		<guid isPermaLink="false">http://vspace.wordpress.com/2007/02/14/simple-approach-to-relational-database-design/</guid>
		<description><![CDATA[First, create a list of important things  										(entities) and include those things you  										may not initially believe is important.  										Second, draw a line between any two entities  										that have any connection whatsoever; except  										that no two entities can connect without  										a &#8216;rule&#8217;; e.g.: families have children,  										employees work [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=11&subd=vspace&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>First, create a list of important things  										(entities) and include those things you  										may not initially believe is important.  										Second, draw a line between any two entities  										that have any connection whatsoever; except  										that no two entities can connect without  										a &#8216;rule&#8217;; e.g.: families have children,  										employees work for a department. Therefore  										put the &#8216;connection&#8217; in a diamond, the &#8216;entities&#8217;  										in squares. Third, your picture should now  										have many squares (entities) connected to  										other entities through diamonds (a square  										enclosing an entity, with a line to a diamond  										describing the relationship, and then another  										line to the other entity). Fourth, put descriptors  										on each square and each diamond, such as  										customer &#8212; airline &#8212; trip. Fifth, give  										each diamond and square any attributes it  										may have (a person has a name, an invoice  										has a number), but some relationships have  										none (a parent just owns a child). Sixth,  										everything on your page that has attributes  										is now a table, whenever two entities have  										a relationship where the relationship has  										no attributes, there is merely a foreign  										key between the tables. Seventh, in general  										you want to make tables not repeat data.  										So, if a customer has a name and several  										addresses, you can see that for every address  										of a customer, there will be repeated the  										customer&#8217;s first name, last name, etc. So,  										record Name in one table, and put all his  										addresses in another. Eighth, each row (record)  										should be unique from every other one; Mr.  										Freedman suggests a &#8216;auto-increment number&#8217;  										primary key, where a new, unique number  										is generated for each new inserted row.  										Ninth, a key is any way to uniquely identify  										a row in a table&#8230;first and last name together  										are good as a &#8216;composite&#8217; key. That&#8217;s the  										technique.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vspace.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vspace.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vspace.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vspace.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vspace.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vspace.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vspace.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vspace.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vspace.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vspace.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vspace.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vspace.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=11&subd=vspace&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vspace.wordpress.com/2007/02/14/simple-approach-to-relational-database-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/424062b8b5fc4ce439100f3a960ad73b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vspace</media:title>
		</media:content>
	</item>
		<item>
		<title>Java as a Popular Computing Platform</title>
		<link>http://vspace.wordpress.com/2006/10/30/java-as-a-popular-computing-platform/</link>
		<comments>http://vspace.wordpress.com/2006/10/30/java-as-a-popular-computing-platform/#comments</comments>
		<pubDate>Mon, 30 Oct 2006 12:38:24 +0000</pubDate>
		<dc:creator>Vijay Kumar</dc:creator>
		
		<guid isPermaLink="false">http://vspace.wordpress.com/2006/10/30/java-as-a-popular-computing-platform/</guid>
		<description><![CDATA[Java       is being widely used in building complex, distributed applications. The       spectrum is amazing: on the one hand we have hand-held devices that run       Java applications and on the other, we have huge servers running on-line  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=10&subd=vspace&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p align="justify"><font face="Tahoma" size="2"><span>Java       is being widely used in building complex, distributed applications. The       spectrum is amazing: on the one hand we have hand-held devices that run       Java applications and on the other, we have huge servers running on-line       transactions serving hundreds of users. Since its public debut a few years       ago, Java technology has been growing steadily, and is now adopted by       thousands of companies and organizations around the world.</span></font></p>
<p><font face="Tahoma" size="2">  </font></p>
<p align="justify"><font face="Tahoma" size="2"><font face="Tahoma" size="2">Certain features of the Java language such as automatic garbage collection, multithreading, platform neutrality, absence of pointers, and robust exception handling facilitate the development of large-scale applications with amazing productivity. It is a widely prevalent notion that Java is much easier to learn and use compared to C++ and some even claim that Java has overtaken C++ as the world’s most popular object-oriented language. Although in some contexts Java’s performance might be unacceptable, the number and type of applications built on Java technology are continuing to grow day by day.</font></font></p>
<p align="justify"><font face="Tahoma" size="2"><font face="Tahoma" size="2">In this context it is wise to ask whether the quality of Java applications is automatically better than applications built using other technologies, for example, C++. It must be clearly borne in mind that Java by itself cannot guarantee a <em> <strong>bug-free, high performance, reliable, scalable</strong></em> application. Features built into the Java language can only assist to some extent in achieving some of these quality factors. The bottom line is that Java programs can also be buggy and can suffer from performance-related problems. If the architecture, design and coding are not <em><strong>good</strong></em>, a Java program will not be very different from a <em><strong>bad</strong></em> program written in C++ or any other OO language.</font></font></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vspace.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vspace.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vspace.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vspace.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vspace.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vspace.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vspace.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vspace.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vspace.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vspace.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vspace.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vspace.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=10&subd=vspace&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vspace.wordpress.com/2006/10/30/java-as-a-popular-computing-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/424062b8b5fc4ce439100f3a960ad73b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vspace</media:title>
		</media:content>
	</item>
		<item>
		<title>Trojan horse</title>
		<link>http://vspace.wordpress.com/2006/09/26/trojan-horse/</link>
		<comments>http://vspace.wordpress.com/2006/09/26/trojan-horse/#comments</comments>
		<pubDate>Tue, 26 Sep 2006 13:12:28 +0000</pubDate>
		<dc:creator>Vijay Kumar</dc:creator>
		
		<guid isPermaLink="false">http://vspace.wordpress.com/2006/09/26/trojan-horse/</guid>
		<description><![CDATA[For last two days I have been fighting with spyware in my system. To get rid of this spywares of my systems I went through diffrent sites and came to know about Trojan horse, an intrusive like application that watch your activity on your system and pass the information to other system. 
A Trojan horse [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=8&subd=vspace&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For last two days I have been fighting with spyware in my system. To get rid of this spywares of my systems I went through diffrent sites and came to know about Trojan horse, an intrusive like application that watch your activity on your system and pass the information to other system. <span></span></p>
<p>A Trojan horse is a destructive program that masquerades as a benign  application. Unlike viruses, Trojan horses do not replicate themselves but they can be just as destructive. One of the most insidious types of Trojan horse is a program that claims to rid your computer of <span class="iAs" style="border-bottom:0.075em solid darkgreen;font-weight:normal;font-size:100%;text-decoration:underline;background-color:transparent;padding-bottom:1px;"></span>viruses but instead introduces viruses onto your computer.</p>
<p><span></span></p>
<p>The term comes from the a Greek story of the Trojan War, in which the Greeks give a giant wooden horse to their foes, the Trojans, ostensibly as a peace offering. But after the Trojans drag the horse inside their city walls, Greek soldiers sneak out of the horse&#8217;s hollow belly and open the city gates, allowing their compatriots to pour in and capture Troy.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vspace.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vspace.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vspace.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vspace.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vspace.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vspace.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vspace.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vspace.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vspace.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vspace.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vspace.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vspace.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=8&subd=vspace&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vspace.wordpress.com/2006/09/26/trojan-horse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/424062b8b5fc4ce439100f3a960ad73b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vspace</media:title>
		</media:content>
	</item>
		<item>
		<title>XML- basis for future web standards</title>
		<link>http://vspace.wordpress.com/2006/09/12/xml-basis-for-future-web-standards/</link>
		<comments>http://vspace.wordpress.com/2006/09/12/xml-basis-for-future-web-standards/#comments</comments>
		<pubDate>Tue, 12 Sep 2006 16:10:09 +0000</pubDate>
		<dc:creator>Vijay Kumar</dc:creator>
		
		<guid isPermaLink="false">http://vspace.wordpress.com/2006/09/12/xml-basis-for-future-web-standards/</guid>
		<description><![CDATA[While wandering into a forum, I read following points. These provides a firm support to my thinking about the xml.
1. XML will certainly be the basis on which future Web standards are built.
2. XML will probably become the universal serial format for structured data.
3. XML will almost certainly become the basis for international publishing.
4. XML [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=5&subd=vspace&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While wandering into a forum, I read following points. These provides a firm support to my thinking about the xml.</p>
<p>1. XML will certainly be the basis on which future Web standards are built.<br />
2. XML will probably become the universal serial format for structured data.<br />
3. XML will almost certainly become the basis for international publishing.<br />
4. XML may replace all existing word processing and desktop publishing formats.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vspace.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vspace.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vspace.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vspace.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vspace.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vspace.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vspace.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vspace.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vspace.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vspace.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vspace.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vspace.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=5&subd=vspace&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vspace.wordpress.com/2006/09/12/xml-basis-for-future-web-standards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/424062b8b5fc4ce439100f3a960ad73b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vspace</media:title>
		</media:content>
	</item>
		<item>
		<title>What is E-Commerce</title>
		<link>http://vspace.wordpress.com/2006/08/01/what-is-e-commerce/</link>
		<comments>http://vspace.wordpress.com/2006/08/01/what-is-e-commerce/#comments</comments>
		<pubDate>Tue, 01 Aug 2006 13:28:02 +0000</pubDate>
		<dc:creator>Vijay Kumar</dc:creator>
		
		<guid isPermaLink="false">https://vspace.wordpress.com/2006/08/01/what-is-e-commerce/</guid>
		<description><![CDATA[E-Commerce stands for Electronic Commerce, and is a general term used to describe all forms of trade on the Internet, especially those where payment is taken via the Web. In prctice e-commerce and e-business is used interchangeably. E-commerce is process of buying and selling of products and services over the Internet. basically this is transmit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=4&subd=vspace&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>E-Commerce<font size="-1"> stands for Electronic Commerce, and is a general term used to describe all forms of trade on the Internet, especially those where payment is taken via the Web. In prctice e-commerce and e-business is used </font><font size="-1">interchangeably. E-commerce is process of buying and selling of products and services over the Internet.</font><font size="-1"> basically this is transmit business information and transact business by using communication technologies. A very simple form of e-commerce is taking order over the phone.</font><font size="-1">. e-Commerce or e-business refers to the business transactions between companies (B2B) or between companies and their customers (B2C).</font></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vspace.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vspace.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vspace.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vspace.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vspace.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vspace.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vspace.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vspace.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vspace.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vspace.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vspace.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vspace.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=4&subd=vspace&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vspace.wordpress.com/2006/08/01/what-is-e-commerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/424062b8b5fc4ce439100f3a960ad73b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vspace</media:title>
		</media:content>
	</item>
		<item>
		<title>Thanks to Open Source Revolution</title>
		<link>http://vspace.wordpress.com/2006/07/17/thanks-to-open-source-revolution/</link>
		<comments>http://vspace.wordpress.com/2006/07/17/thanks-to-open-source-revolution/#comments</comments>
		<pubDate>Mon, 17 Jul 2006 14:47:38 +0000</pubDate>
		<dc:creator>Vijay Kumar</dc:creator>
				<category><![CDATA[Open Source Technology]]></category>

		<guid isPermaLink="false">https://vspace.wordpress.com/2006/07/17/thanks-to-open-source-revolution/</guid>
		<description><![CDATA[Hi All. First of all I would like to thanks to all people, communities, companies who have  brought  revolution in IT business by adopting Open source software. My special regards to all the developers who are donating their valuable effort in terms of code to enrich the open source  movement. It is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=3&subd=vspace&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi All. First of all I would like to thanks to all people, communities, companies who have  brought  revolution in IT business by adopting Open source software. My special regards to all the developers who are donating their valuable effort in terms of code to enrich the open source  movement. It is their effort only that I have been able to post my blog on internet.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vspace.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vspace.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vspace.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vspace.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vspace.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vspace.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vspace.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vspace.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vspace.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vspace.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vspace.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vspace.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vspace.wordpress.com&blog=308998&post=3&subd=vspace&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vspace.wordpress.com/2006/07/17/thanks-to-open-source-revolution/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/424062b8b5fc4ce439100f3a960ad73b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vspace</media:title>
		</media:content>
	</item>
	</channel>
</rss>