<?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>Technology News</title>
	<atom:link href="http://dskc.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dskc.wordpress.com</link>
	<description>You learn when other shared their feelings... so it is your turn to share them..</description>
	<lastBuildDate>Sat, 14 Jan 2012 04:55:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dskc.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Technology News</title>
		<link>http://dskc.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dskc.wordpress.com/osd.xml" title="Technology News" />
	<atom:link rel='hub' href='http://dskc.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Differed Execution (vs) Immediate execution in LINQ</title>
		<link>http://dskc.wordpress.com/2011/04/13/differed-execution-vs-immediate-execution-in-linq-2/</link>
		<comments>http://dskc.wordpress.com/2011/04/13/differed-execution-vs-immediate-execution-in-linq-2/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 15:38:25 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[2011]]></category>
		<category><![CDATA[April]]></category>
		<category><![CDATA[C# 3.0]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wednesday]]></category>

		<guid isPermaLink="false">https://dskc.wordpress.com/2011/04/13/differed-execution-vs-immediate-execution-in-linq-2/</guid>
		<description><![CDATA[Recently while understanding LINQ, many things unfurled from MSDN. The main theme of .NET is lazy binding (or) lazy loading. And it is evolving in all the ways within the .net Framework. I recollect in one of my previous posts about the mainly concentrated theme for every version that is released. I could be wrong [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=56&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently while understanding LINQ, many things unfurled from MSDN. The main theme of .NET is lazy binding (or) lazy loading. And it is evolving in all the ways within the .net Framework. I recollect in one of my previous posts about the mainly concentrated <a title=".NET Version Themes" href="http://dskc.blogspot.com/2011/01/net-version-themes.html" target="_blank">theme for every version</a> that is released. I could be wrong from the insider perspective, but what I’ve observed is what I’ve written.</p>
<p>Anyhow, coming back to the main purpose of this post, which is all about the lazy loading and the point behind various execution mechanisms that are available within LINQ. Before I proceed further, one point is very certain that, choosing LINQ is costlier from the point of “Response Time” from DB to any connected system. This statement is true when compared the LINQ with any traditional mechanism of database connectivity.</p>
<p>Traditionally, every developer writes code with Connection object for connecting to the Data Store and then disposes the connection. This method can be by various objects that are provided within .net framework. One of the mechanism is that </p>
<ul>
<li>Use a connection object and DataAdapter </li>
<li>Use a connection object along with Command and use either DataReader or DataSet </li>
</ul>
<p>These mechanisms are pretty neat and straight, while connecting to the datastore. Where as they don’t provide the query mechanism to the developer against the returned results from the datastore. Ofcourse, you still could do the “Filter” method for the dataset or datatable object. This again doesn’t give the generic way to query from the data in the dataset / datatable. </p>
<p>LINQ, in this context provides a great flexibility for the developer to query against the data schema and provides a decent means of all kinds of DataBase querying techniques. In other words, I could say that LINQ gives the power of Database Querying to the C# developer. If your applications are developed using LINQ, you don’t need to have a DB developer. But you need the DB administrator to understand the health of the database and fine tune the queries used by LINQ. Hence, by choosing LINQ for your projects you are saving cost to the project owner. So, <font color="#ff0000">To LINQ</font> or <font color="#0000ff">NOT</font> to is upto you to decide. Let me not write more here about&#160; LINQ and jump to the execution mechanisms within LINQ.</p>
<p>As titled in the post, there are 2 mechanisms for the execution of LINQ Results, I say it is about LINQ RESULTS. They are differed execution as well as Immediate execution. The main difference between these two are the lazy loading (or) JustInTime loading at the run time. To make simple this entire story, let me give you some code snippet, so that you would understand. For this am trying to query the Northwind Database. </p>
<p>Requirement:</p>
<p>Display all the employee names along with the product names and total of sold quantity</p>
<p>&#160;</p>
<p>Solution 1 : In this solution am trying to use the LINQ as an Expression.</p>
<pre class="code"><span style="color:blue;">var </span>empCounts = <span style="color:blue;">from </span>eachEmpData <span style="color:blue;">in
 </span>(<span style="color:blue;">from </span>eachSale <span style="color:blue;">in
   </span>(<span style="color:blue;">from </span>eachEmp <span style="color:blue;">in </span>nwDB.Employees
      <span style="color:blue;">join </span>eachOrder <span style="color:blue;">in </span>nwDB.Orders <span style="color:blue;">on </span>eachEmp.EmployeeID <span style="color:blue;">equals </span>eachOrder.EmployeeID
      <span style="color:blue;">join </span>eachOrderDetails <span style="color:blue;">in </span>nwDB.Order_Details <span style="color:blue;">on </span>eachOrder.OrderID <span style="color:blue;">equals </span>eachOrderDetails.OrderID
     <span style="color:blue;">join </span>eachProduct <span style="color:blue;">in </span>nwDB.Products <span style="color:blue;">on </span>eachOrderDetails.ProductID <span style="color:blue;">equals </span>eachProduct.ProductID
     <span style="color:blue;">where </span>eachOrder.OrderDate &gt; dtStart &amp;&amp; eachOrder.OrderDate &lt; dtEnd
                          <span style="color:blue;">select new
                          </span>{
                              FirstName = eachEmp.FirstName,
                              LastName = eachEmp.LastName,
                              ProductName = eachProduct.ProductName,
                              OrderQuantity = eachOrderDetails.Quantity
                          }
                        )
    <span style="color:blue;">group </span>eachSale <span style="color:blue;">by new </span>{ eachSale.FirstName, eachSale.LastName, eachSale.ProductName } <span style="color:blue;">into </span>groupSales
                     <span style="color:blue;">select new
                     </span>{
                         groupSales.Key.FirstName,
                         groupSales.Key.LastName,
                         groupSales.Key.ProductName,
                         Sold = groupSales.Sum(qty =&gt; qty.OrderQuantity)
                     })
                <span style="color:blue;">select </span>eachEmpData;
</pre>
<pre class="code"><span style="color:green;"><font color="#0000ff"></font></span>&#160;</pre>
<pre class="code"><span style="color:green;">// the below line binds the data from LINQ Expression
</span></pre>
<p>bsLINQData.DataSource = empCounts;</p>
<p>In this solution, you could see that I’ve written all the joins similar to that of the Database SQL joins. If you are familiar with all such queries, then it is very easy to write. But this kind of writing is also expensive. The alternative for such queries is the next solution.</p>
<p>Solution 2: In this solution am trying to use the same above LINQ as methods</p>
<pre class="code"><span style="color:blue;">var </span>empCounts = nwDB.Orders
    .Where(eachOrder =&gt; eachOrder.OrderDate &gt; dtStart &amp;&amp; eachOrder.OrderDate &lt; dtEnd)
                    .SelectMany(eachOrderDetails =&gt; eachOrderDetails.Order_Details)
                    .GroupBy(od =&gt; <span style="color:blue;">new </span>{ od.Product, od.Order.Employee })
                    .Select(od =&gt; <span style="color:blue;">new
                    </span>{
                        FirstName = od.Key.Employee.FirstName,
                        LastName = od.Key.Employee.LastName,
                        ProductName = od.Key.Product.ProductName,
                        Sold = od.Sum(q =&gt; q.Quantity)
                    })
                    .OrderBy(s =&gt; s.Sold);

                <span style="color:green;">// the below line binds the data from LINQ Expression
                </span>bsLINQData.DataSource = empCounts;</pre>
<p>In this solution, you find less coding and much usage of LINQ as methods. This kind of coding is much better than the previous solution. For the records, the above solution has taken about 3 milliseconds on my laptop where as the current solution took about 1 millisecond to query. See below for the stats and comparison.</p>
<p>Solution 3: The above two solutions are Differed execution, where as the current one is all about Immediate execution.</p>
<pre class="code"><span style="color:blue;">var </span>empCounts = nwDB.Orders
    .Where(eachOrder =&gt; eachOrder.OrderDate &gt; dtStart &amp;&amp; eachOrder.OrderDate &lt; dtEnd)
    .SelectMany(eachOrderDetails =&gt; eachOrderDetails.Order_Details)
    .GroupBy(od =&gt; <span style="color:blue;">new </span>{ od.Product, od.Order.Employee })
    .Select(od =&gt; <span style="color:blue;">new
    </span>{
        FirstName = od.Key.Employee.FirstName,
        LastName = od.Key.Employee.LastName,
        ProductName = od.Key.Product.ProductName,
        Sold = od.Sum(q =&gt; q.Quantity)
    })
    .OrderBy(s =&gt; s.Sold).ToList();

<span style="color:green;">// the below line binds the data from LINQ Expression
</span>bsLINQData.DataSource = empCounts;</pre>
<p>Here you have to observe the query ended with <font>.ToList()</font> and that is the trick of this query. When you see the statistics, it is very surprising that the time taken to query is very negligible when compared with binding the query results to the binding source. Which means that it is evident to say, LINQ doesn’t fetch the data when it is queried, but it fetches data when it is actually binded to any source.</p>
<p>Finally, the results when compared the above all the three solutions are as mentioned below</p>
<table style="border-collapse:collapse;color:#000000;" border="0" cellspacing="0" cellpadding="0" width="202">
<col style="width:56pt;" width="74" />
<col style="width:48pt;" width="64" />
<tbody>
<tr style="height:15pt;">
<td style="border-bottom:windowtext .5pt solid;border-left:windowtext .5pt solid;background-color:white;padding-left:1px;padding-right:1px;vertical-align:middle;border-top:windowtext .5pt solid;border-right:windowtext .5pt solid;padding-top:1px;" class="xl68" height="20" width="74" align="center"><font face="Calibri"></font><font color="#ffffff"><strong>&#160;</strong></font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;background-color:#9bbb59;padding-left:1px;padding-right:1px;vertical-align:middle;border-top:windowtext .5pt solid;border-right:windowtext .5pt solid;padding-top:1px;" class="xl66" width="64" align="center"><font face="Calibri"></font><font color="#ffffff"><strong>Query</strong></font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;background-color:#9bbb59;padding-left:1px;padding-right:1px;vertical-align:middle;border-top:windowtext .5pt solid;border-right:windowtext .5pt solid;padding-top:1px;" class="xl66" width="64" align="center"><font face="Calibri"></font><font color="#ffffff"><strong>Bind</strong></font></td>
</tr>
<tr style="height:15pt;">
<td style="border-bottom:windowtext .5pt solid;border-left:windowtext .5pt solid;background-color:#c5d9f1;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl67" height="20"><font face="Calibri"></font><font color="#ff0000"><strong>Expression</strong></font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl65" align="right"><font face="Calibri"></font><font color="#000000">3</font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl65" align="right"><font face="Calibri"></font><font color="#000000">60</font></td>
</tr>
<tr style="height:15pt;">
<td style="border-bottom:windowtext .5pt solid;border-left:windowtext .5pt solid;background-color:#c5d9f1;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl67" height="20"><font face="Calibri"></font><font color="#ff0000"><strong>Methods</strong></font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl65" align="right"><font face="Calibri"></font><font color="#000000">1</font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl65" align="right"><font face="Calibri"></font><font color="#000000">44</font></td>
</tr>
<tr style="height:15pt;">
<td style="border-bottom:windowtext .5pt solid;border-left:windowtext .5pt solid;background-color:#c5d9f1;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl67" height="20"><font face="Calibri"></font><font color="#ff0000"><strong>InList</strong></font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl65" align="right"><font face="Calibri"></font><font color="#000000">35</font></td>
<td style="border-bottom:windowtext .5pt solid;border-left:medium none;padding-left:1px;padding-right:1px;vertical-align:bottom;border-top:medium none;border-right:windowtext .5pt solid;padding-top:1px;" class="xl65" align="right"><font face="Calibri"></font><font color="#000000">9</font></td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>Conclusion :</p>
<p>Solution 1 and Solution 2 are the examples for Differed Execution, where as the 3rd solution is an example for Immediate execution. Any comments?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=56&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2011/04/13/differed-execution-vs-immediate-execution-in-linq-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET 70-515 Exam Preparation points</title>
		<link>http://dskc.wordpress.com/2011/01/25/asp-net-70-515-exam-preparation-points/</link>
		<comments>http://dskc.wordpress.com/2011/01/25/asp-net-70-515-exam-preparation-points/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 14:09:02 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[2011]]></category>
		<category><![CDATA[25]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Certificates]]></category>
		<category><![CDATA[January]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tuesday]]></category>

		<guid isPermaLink="false">https://dskc.wordpress.com/2011/01/25/asp-net-70-515-exam-preparation-points/</guid>
		<description><![CDATA[I’ve written the mentioned exam and completed this in the second attempt. I’ve failed in my first attempt, but passed in the second attempt. The second attempt for all the Microsoft exams is free. One of my friend asked me about the highlight points that helped me to attend the exam. This post arrived while [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=55&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve written the mentioned exam and completed this in the second attempt. I’ve failed in my first attempt, but passed in the second attempt. The second attempt for all the Microsoft exams is free. One of my friend asked me about the highlight points that helped me to attend the exam. This post arrived while preparation of the bulleted points that I recollect from the exam. </p>
<p>The whole exam pattern can be divided into 3 + 2 = 5 sections. The first 3 sections are more concentrate on the enhancements in v4.0 along with the traditional questions from v3.0 based. The second 2 sections are mainly into configuration and deployment of any web app that is developed using ASP.NET v4.0</p>
<p>To make the long story short, here is the full details that I’ve in my mind. Ofcourse, I’ve not mentioned any thing about MVC as a separate section, because, MVC is a pattern for me but not a new enhancement from the point of framework. Having mentioned that you can even consider that there are few questions pertaining about MVC too, thus, don’t forget to give attention towards MVC.</p>
<h3><font color="#0000ff">1) Traditional WebApplication questions</font></h3>
<p>1) How to Configure Web Forms pages&#160; <br />2) What are master pages and themes&#160; <br />3) What is globalization</p>
<p>4) What are the page life cycle events</p>
<p>5) How to implement caching and how to manage view-state &amp; Validate user input</p>
<h3><font color="#0000ff">2) Questions that are new to ASP.NET v4.0 Controls</font></h3>
<p>6) What are user controls and how to implement&#160; <br />7) What are the mechanisms using which we can manipulate user interface controls from code-behind</p>
<p>8) What controls help to Display and Manipulate Data&#160; <br />9) What are the new ways to implement DataBound / DataSource controls</p>
<p>10) Query and manipulate data by using LINQ (ofcourse, this doesn&#8217;t new to v4.0 but the exam questions are based on v3.0 LINQ)</p>
<h3><font color="#0000ff">3) This section is about new enhancements from ASP.NET v4.0</font></h3>
<p>11) What is Client-Side Scripting and AJAX&#160; <br />12) How to induce the dynamic features to a page by using JavaScript&#160; <br />13) How to handle JavaScript events</p>
<h5>3.1)Services Enhancements </h5>
<p>14) How to create and consume a data service&#160; <br />15) How to create and configure a Dynamic Data project</p>
<h3><font color="#0000ff">4) Configuration Section targeting the production environment</font></h3>
<p>16) How to configuring and Extending a Web Application&#160; <br />17) How to configure authentication and authorization&#160; <br />18) How to configure providers&#160; <br />19) How to create and configure HttpHandlers and HttpModules&#160; <br />20) How to Configure initialization and error handling&#160; <br />21) How to reference and configure ASMX and WCF services&#160; <br />22) How to Configure projects and solutions, and reference assemblies&#160; <br />23) What are custom routes and how to create controllers &amp; actions</p>
<h3><font color="#0000ff">5) Standard Deployment of WebApps </font></h3>
<p>24) How to debug a Web application&#160; <br />25) How to deploy a Web application</p>
<p>So, if you are attending this exam, please give your self a second study about the above mentioned points. If you are aware of fundamentals of these topics, that’s it you are thru. Happy certification. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=55&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2011/01/25/asp-net-70-515-exam-preparation-points/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>
	</item>
		<item>
		<title>Sending SMS from .NET Application</title>
		<link>http://dskc.wordpress.com/2010/12/14/sending-sms-from-net-application/</link>
		<comments>http://dskc.wordpress.com/2010/12/14/sending-sms-from-net-application/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 16:43:26 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://dskc.wordpress.com/2010/12/14/sending-sms-from-net-application/</guid>
		<description><![CDATA[Today, when visiting the MSDN forums, came across of a request about the subject of this post. While replying, thought of writing a post with visual aids. So that it would be more meaningful. But unfortunate that MSDN forum doesn’t support to upload the Images. Hence is the blog post. Before we talk about .NET [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=54&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, when visiting the <a title="MSDN Forums Home" href="http://social.msdn.microsoft.com/Forums/en-US/categories" target="_blank">MSDN forums</a>, came across of a request about the subject of this post. While replying, thought of writing a post with visual aids. So that it would be more meaningful. But unfortunate that <a title="MSDN Forums Home" href="http://social.msdn.microsoft.com/Forums/en-US/categories" rel="tag" target="_blank">MSDN forum</a> doesn’t support to upload the Images. Hence is the blog post.</p>
<p>Before we talk about .NET application, it is required to understand how SMS works and the integration with some application. Thus, let’s see what happens when some one sends SMS. Am not going to talk about SMS sent to any phone with 10 digits unique number, but am talking about sending SMS sent to less than 10 digits number, sent on some reserved interfaces (or) mass SMS receiving mechanism. Mostly these kind of requirements come into action when polling is required or a kind of reality shows like <a title="American Idol Official WebSite" href="http://www.americanidol.com/" rel="tag" target="_blank">American Idol</a> in USA and <a title="Sa Re Ga Ma Pa official Web Site" href="http://www.zeetelevisionasia.com/html/malaya.htm" target="_blank">Sa Re Ga Ma Pa</a> from <a title="Zee Tv Official WebSite" href="http://www.zeetelevisionasia.com/" target="_blank">Zee Tv</a> in India.</p>
<p>Let’s start with how this kind of polling is offered by the Providers, called as SCS Providers ie., Short Code Service Providers. Any business person who is interested to utilize the services of such SCS first has to register with these SCSProviders. The SCSProviders charge according to their business plans. Here is a simple example about the pricing by one of the Indian SCS Provider</p>
<hr />
<p><font>Short Code Number</font>: 53426     <br />&#160;&#160;&#160; <font>Short Code</font>: &lt;KEYWORD&gt; As per request *(subject to availability)     <br />&#160;&#160;&#160; <font>Sub Keyword</font>: Multiple ( e.g. &lt;ShortCode Keyword&gt; &lt;sub-keyword&gt;)     <br />&#160;&#160;&#160; <font>Control Panel</font>: Web Based     <br />&#160;&#160;&#160; <font>Auto-Welcome</font>: An SMS will be send to the customer who will send your short code. This message can be customized from control panel. You can create different Welcome message for sub-keywords also.     </p>
<p>&#160; <font>Reports</font>: Daily Keyword/Sub Keyword based     <br />&#160;&#160;&#160; <font>Database</font>: Database of received SMS will be available in your account with us. (Web Based)     <br />&#160;&#160;&#160; <font>Auto-Forward</font>:To SMS (An SMS will be sent to desired number with Sender&#8217;s Mobile Number SMS Forwarding Cost: 25 P/SMS)</p>
<ul>
<li>To Email (An Email will be sent to desired mail id with Sender&#8217;s Mobile Number, Keyword) </li>
<li>Web URL (This will submit the sender&#8217;s mobile number and keyword to desired web-page and the result of the page will used as Reply Back SMS. This web page could be dynamic in nature to give any user specific reply back. e.g. Result of Exam through SMS Request) </li>
</ul>
<p>&#160; <font>Network Support</font>: All India     <br />&#160;&#160;&#160; <font>Setup Time</font>: 48 Hrs. after approval of Keyword availability     <br />&#160;&#160;&#160; <font>Setup Fee</font>: NIL     <br />&#160;&#160;&#160; <font>Monthly Rental</font>: 4,500/- [4500 + 556 (Service Tax): Rs.5056]     <br />&#160;&#160;&#160; <font>Quarterly Rental</font>: 4,000/- [12000 + 1483 (Service Tax): Rs.13,483]     <br />&#160;&#160;&#160; <font>Half Yearly Rental</font>: 3,500/- [21,000 + 2596 (Service Tax): Rs.23,596]     <br />&#160;&#160;&#160; <font>Yearly Rental</font>: 3,000/- [36,000 + 4450 (Service Tax): Rs.40,450]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160; <br />Rs. 4,450/- Off on Yearly subscription.     <br />&#160; <br />One Year Pricing (after discount): Rs.36,000/-</p>
<hr />
<p>Hope you are now clear about the pricing details of any SCS Provider. Let me show you how the SCS provider works with some visual representation. The infrastructure and the working model would be some thing similar to that of the below mentioned</p>
<p><a href="http://dskc.files.wordpress.com/2010/12/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://dskc.files.wordpress.com/2010/12/image_thumb.png?w=749&#038;h=473" width="749" height="473" /></a></p>
<p>Now that you understand how your SMS communication is implemented in real world, let’s see how this can be extended so that any application can handle the situation when SMS received as well as sent.</p>
<p>Most of the SCS Providers do the URL Forwarding, which means they invoke any of the given URL when they get an SMS. Thus, it is the responsibility of the business application to provide any URL to receive the information about the SMS. The URL would be some thing like, <font color="#0000ff"><strong><u>http://mybusiness.com/getsms.aspx?<font color="#ff0000"></font><font color="#333333">phonenumber</font>=93829283928</u></strong></font>&amp;<font color="#ff0000"></font><font color="#000000">message</font>=thisiscool<font color="#ff0000"> </font></p>
<p>Which means that the business owner should expose some interface by means of a WebPage (or) WebService (or) what ever is feasible for the business. Once the business application gets the information, it is all within the workflow of the rules that is orchestrated by the business owners. The entire crux of this post remains in this last paragraph. Well, for a web developer, I don’t think it is required to explain how to collect the query parameters as well as send any query parameters. This is all fine to collect the SMS sent by the users on a reserved number like 53426. But now, how about sending back some information to the phones via SMS?</p>
<p>As you see in the diagram that every SCSProviders have a feature called as URL Forwarding, they would also be having a web page where you can send some data that would be passed onto the SMS sender. The page that is provided by the SCSProvider would be some thing like <u><strong><font color="#0000ff">http://SCSPWebSite.com/sendsms.aspx?</font><font color="#000000">phnumr</font>=<font color="#ff0000">93829283928</font>&amp;<font color="#000000">message</font>=<font color="#ff0000">thisisreply</font></strong></u>&#160; .. Hope now you are totally aware of how to send SMS with the help of SCS Providers as well as receive SMS in a web application.</p>
<p>What do you say?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=54&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2010/12/14/sending-sms-from-net-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>

		<media:content url="http://dskc.files.wordpress.com/2010/12/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Basic is the Core attention by Microsoft</title>
		<link>http://dskc.wordpress.com/2010/11/29/visual-basic-is-the-core-attention-by-microsoft/</link>
		<comments>http://dskc.wordpress.com/2010/11/29/visual-basic-is-the-core-attention-by-microsoft/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 16:42:56 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[2010]]></category>
		<category><![CDATA[29]]></category>
		<category><![CDATA[Monday]]></category>
		<category><![CDATA[November]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">https://dskc.wordpress.com/2010/11/29/visual-basic-is-the-core-attention-by-microsoft/</guid>
		<description><![CDATA[Workflow foundation is currently at 4th version. The main coding syntax that is expected for any of the code activities are more from the VB code syntax. Hence, it is proven that Microsoft considers VB as primary language while doing any kind of Research. Apart of this, there is one more fact that there is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=51&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Workflow foundation is currently at 4th version. The main coding syntax that is expected for any of the code activities are more from the VB code syntax. Hence, it is proven that Microsoft considers VB as primary language while doing any kind of Research.</p>
<p>Apart of this, there is one more fact that there is a recent toolkit released from Microsoft, just yesterday, ie., 28th Nov 2010. It is <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=4e97ea70-e479-4c05-814f-639d71690e5d" target="_blank">RTW</a> for Windows Phone developer. This release enables Visual Basic developers to create Silverlight applications for Windows Phone 7 using the final version of the windows phone developer tools.</p>
<p>You can download the Windows Phone developer tools RTW from <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=04704ACF-A63A-4F97-952C-8B51B34B00CE" target="_blank">this link</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=51&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2010/11/29/visual-basic-is-the-core-attention-by-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>
	</item>
		<item>
		<title>MSN mailbox size is 500 GB</title>
		<link>http://dskc.wordpress.com/2010/04/08/msn-mailbox-size-is-500-gb/</link>
		<comments>http://dskc.wordpress.com/2010/04/08/msn-mailbox-size-is-500-gb/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 06:48:03 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[2010]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[April]]></category>
		<category><![CDATA[Microsoft Promotion]]></category>
		<category><![CDATA[Thursday]]></category>
		<category><![CDATA[email account]]></category>
		<category><![CDATA[MSN]]></category>

		<guid isPermaLink="false">http://dskc.wordpress.com/2010/04/08/msn-mailbox-size-is-500-gb/</guid>
		<description><![CDATA[Don’t think that this is a false or fake news. I usually configure my outlook with my msn account. To my surprise when I&#8217;ve seen the server status of my MSN account, am surprised to learn that MSN is allocating 500 GB space for each mail account. You don’t believe me!! Here is the proof. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=49&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Don’t think that this is a false or fake news. I usually configure my outlook with my msn account. To my surprise when I&#8217;ve seen the server status of my MSN account, am surprised to learn that MSN is allocating 500 GB space for each mail account. You don’t believe me!! Here is the proof. See the below image, still you don’t believe that I’ve a valid point and you trust that the image is morphed by me.. ha ha ha.. then come and meet me personally, I’ll show you from my laptop.</p>
<p><a href="http://dskc.files.wordpress.com/2010/04/image.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://dskc.files.wordpress.com/2010/04/image_thumb.png?w=244&#038;h=161" width="244" height="161" /></a></p>
<p>Apart of all, how it would be, if i recommend you to configure your MSN account with your local outlook!!! Sounds great right!! Then you don’t have to suspect me, you can witness yourself. Try it ..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=49&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2010/04/08/msn-mailbox-size-is-500-gb/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>

		<media:content url="http://dskc.files.wordpress.com/2010/04/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>SVN Repository Migration</title>
		<link>http://dskc.wordpress.com/2010/04/07/svn-repository-migration/</link>
		<comments>http://dskc.wordpress.com/2010/04/07/svn-repository-migration/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 14:56:58 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[2010]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[April]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wednesday]]></category>

		<guid isPermaLink="false">http://dskc.wordpress.com/2010/04/07/svn-repository-migration/</guid>
		<description><![CDATA[Our current employer decided to have the code base as VisualSVN. So we stated a demo server and then after successful trail started a staging server for our project. For the entire March month it worked well, and we decided to have another VisualSVN server as production.&#160; During the last week we have decided to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=46&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Our current employer decided to have the code base as VisualSVN. So we stated a demo server and then after successful trail started a staging server for our project. For the entire March month it worked well, and we decided to have another VisualSVN server as production.&#160; During the last week we have decided to migrate our staging SVN source to production box, but now the problem is about history or revision of the full one month.</p>
<p>After <a href="http://www.bing.com/search?q=svn+repository+migration&amp;src=IE-SearchBox&amp;FORM=IE8SRC">binging</a> and <a href="http://www.google.com/#hl=en&amp;source=hp&amp;q=svn+repository+migration&amp;aq=f&amp;aqi=g3&amp;aql=&amp;oq=&amp;gs_rfai=&amp;fp=467c3568f2eec009">googling</a>, I’ve found many alternatives. Most of all, I’ve realized one simple solution and migrated the entire code base from staging to production as simple as cake biting.</p>
<p>Problem : </p>
<p>Source SVN is at 10.4.5.68 and the repositories are installed at D:\</p>
<p>Target SVN is at 119.18.112.63 and the repositories are installed at E:\</p>
<p>Solution:</p>
<p>Step 1:</p>
<p>Copy all the project folders from 5.68\d$\repository\&lt;&lt;projectRepositories&gt;&gt; to 112.63\e$\repository\</p>
<p>Step 2:</p>
<p>Copy the auth files from 5.68 to 112.63, this would copy all the users along with their project groups</p>
<p>Step 3:</p>
<p>Go to the client side and just relocate your SVN url by right clicking on the folder and point to “SVN=&gt;Relocate”</p>
<p>That’s is done.. did you try?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=46&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2010/04/07/svn-repository-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>
	</item>
		<item>
		<title>EntLib 5.0 &amp; Unity 2.0 Release Dates</title>
		<link>http://dskc.wordpress.com/2010/01/21/entlib-5-0-unity-2-0-release-dates/</link>
		<comments>http://dskc.wordpress.com/2010/01/21/entlib-5-0-unity-2-0-release-dates/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 13:15:00 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dskc.wordpress.com/2010/01/21/entlib-5-0-unity-2-0-release-dates/</guid>
		<description><![CDATA[Am a big favorite of EntLib. I started using this from v1.1 during June 2005. The good thing from the latest version is that they are not adding any more blocks, on top of it they are removing some unwanted code. They are targeting to release this by 14th of April after 2days of VS2010.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=45&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Am a big favorite of EntLib. I started using this from v1.1 during June 2005. The good thing from the latest version is that they are not adding any more blocks, on top of it they are removing some unwanted code.</p>
<p>They are targeting to release this by 14th of April after 2days of VS2010.</p>
<p><a href="http://dskc.files.wordpress.com/2010/01/revisedroadmapv5.png"><img style="display:inline;border-width:0;" title="RevisedRoadMapv5" border="0" alt="RevisedRoadMapv5" src="http://dskc.files.wordpress.com/2010/01/revisedroadmapv5_thumb.png?w=837&#038;h=479" width="837" height="479" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=45&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2010/01/21/entlib-5-0-unity-2-0-release-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>

		<media:content url="http://dskc.files.wordpress.com/2010/01/revisedroadmapv5_thumb.png" medium="image">
			<media:title type="html">RevisedRoadMapv5</media:title>
		</media:content>
	</item>
		<item>
		<title>Bill Gates started a website</title>
		<link>http://dskc.wordpress.com/2010/01/21/bill-gates-started-a-website/</link>
		<comments>http://dskc.wordpress.com/2010/01/21/bill-gates-started-a-website/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 09:52:00 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[2010]]></category>
		<category><![CDATA[21]]></category>
		<category><![CDATA[First]]></category>
		<category><![CDATA[January]]></category>
		<category><![CDATA[Microsoft Promotion]]></category>
		<category><![CDATA[Thursday]]></category>
		<category><![CDATA[Bill Gates]]></category>

		<guid isPermaLink="false">http://dskc.wordpress.com/2010/01/21/bill-gates-started-a-website/</guid>
		<description><![CDATA[Microsoft’s co-founder, Bill Gates started a new website about his leanings and thoughts that are cooking in his mind. It is really good to know such transparent information from a person like him. Every January, he writes a news letter to all the employees of Microsoft and shares his ideas to them. This year is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=42&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft’s co-founder, Bill Gates started a new website about his leanings and thoughts that are cooking in his mind. It is really good to know such transparent information from a person like him.</p>
<p>Every January, he writes a news letter to all the employees of Microsoft and shares his ideas to them. This year is some thing different. Why only the Microsofties know about him, not the world. From this thought is raised a new concept of sharing via web.</p>
<p>Did you see this web, the <a href="http://www.thegatesnotes.com/">Gates Notes</a>. It has various sections like, Thinking, Learning, Travel, blah.. blah .. Why don’t you go there and start exploring more about him.</p>
<p>BTW don’t forget to convey this to your friends..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=42&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2010/01/21/bill-gates-started-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>
	</item>
		<item>
		<title>MSDN Code Gallery Tags</title>
		<link>http://dskc.wordpress.com/2010/01/20/msdn-code-gallery-tags/</link>
		<comments>http://dskc.wordpress.com/2010/01/20/msdn-code-gallery-tags/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 11:05:00 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[2010]]></category>
		<category><![CDATA[January]]></category>
		<category><![CDATA[MSDN]]></category>

		<guid isPermaLink="false">http://dskc.wordpress.com/2010/01/20/msdn-code-gallery-tags/</guid>
		<description><![CDATA[This link gives you a beautiful access to the code snippets available from MSDN Code Gallery. The way it is designed is great.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=40&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.msdn.microsoft.com/Tagging/FullTagCloud.aspx">This link</a> gives you a beautiful access to the code snippets available from MSDN Code Gallery. The way it is designed is great. </p>
<p><a href="http://dskc.files.wordpress.com/2010/01/image.png"><img title="image" style="display:inline;border-width:0;" height="606" alt="image" src="http://dskc.files.wordpress.com/2010/01/image_thumb.png?w=1184&#038;h=606" width="1184" border="0" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=40&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2010/01/20/msdn-code-gallery-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>

		<media:content url="http://dskc.files.wordpress.com/2010/01/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Strange caution by Google</title>
		<link>http://dskc.wordpress.com/2008/03/20/strange-caution-by-google/</link>
		<comments>http://dskc.wordpress.com/2008/03/20/strange-caution-by-google/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 05:52:59 +0000</pubDate>
		<dc:creator>చక్రవర్తి</dc:creator>
				<category><![CDATA[Strange]]></category>

		<guid isPermaLink="false">http://dskc.wordpress.com/2008/03/20/strange-caution-by-google/</guid>
		<description><![CDATA[Today, while searching googling for some information, the above got my attention. Did you see any thing strange in the above ?? I couldn&#8217;t understand how the google came to a conclusion that the website, ASPALLIANCE.COM, will harm the visitor&#8217;s computer. Please help me if any of the world are aware of this .. or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=37&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://dskc.files.wordpress.com/2008/03/image2.png"><img style="border-width:0;" border="0" alt="image" src="http://dskc.files.wordpress.com/2008/03/image-thumb2.png?w=893" width="893"/></a> </p>
<p>Today, while <strike>searching</strike> googling for some information, the above got my attention. Did you see any thing strange in the above ?? I couldn&#8217;t understand how the google came to a conclusion that the website, ASPALLIANCE.COM, will harm the visitor&#8217;s computer.</p>
<p>Please help me if any of the world are aware of this .. or an clue about how this caution arise with ASPALLIANCE.COM</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dskc.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dskc.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dskc.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dskc.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dskc.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dskc.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dskc.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dskc.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dskc.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dskc.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dskc.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dskc.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dskc.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dskc.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dskc.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dskc.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dskc.wordpress.com&amp;blog=24521&amp;post=37&amp;subd=dskc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dskc.wordpress.com/2008/03/20/strange-caution-by-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01e05a432c12c2fb1842df1a36227f71?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dskc</media:title>
		</media:content>

		<media:content url="http://dskc.files.wordpress.com/2008/03/image-thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
