<?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>Rajesh kumar's Blog</title>
	<atom:link href="http://rajeshkumara.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rajeshkumara.wordpress.com</link>
	<description>If you have knowledge, let others light their candles at it.</description>
	<lastBuildDate>Tue, 27 Dec 2011 17:36:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rajeshkumara.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Rajesh kumar's Blog</title>
		<link>http://rajeshkumara.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rajeshkumara.wordpress.com/osd.xml" title="Rajesh kumar&#039;s Blog" />
	<atom:link rel='hub' href='http://rajeshkumara.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Create non zero indexed arrays in C#</title>
		<link>http://rajeshkumara.wordpress.com/2011/12/19/create-non-zero-indexed-arrays-in-c/</link>
		<comments>http://rajeshkumara.wordpress.com/2011/12/19/create-non-zero-indexed-arrays-in-c/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 15:18:19 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Non zero index]]></category>

		<guid isPermaLink="false">https://rajeshkumara.wordpress.com/?p=217</guid>
		<description><![CDATA[99.99% of the time, we write our code with zero indexed arrays. However, C# allows us to create non zero based (single or multi dimensional arrays). The syntax from MSDN is: public static Array CreateInstance( Type elementType, int[] lengths, int[] lowerBounds) CreateInstance is a static method available in Array class. Here, variable &#34;lengths&#34; indicates the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=217&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>99.99% of the time, we write our code with zero indexed arrays. However, C# allows us to create non zero based (single or multi dimensional arrays).</p>
<p>The syntax from MSDN is:</p>
<blockquote><pre class="code"><font size="2"><span style="color:blue;">public static </span><span style="color:#2b91af;">Array </span>CreateInstance(
                <span style="color:#2b91af;">Type </span>elementType,
                <span style="color:blue;">int</span>[] lengths,
                <span style="color:blue;">int</span>[] lowerBounds)</font></pre>
</blockquote>
<p><strong></strong></p>
<p><strong>CreateInstance</strong> is a static method available in Array class. Here, variable &quot;<strong>lengths</strong>&quot; indicates the dimension of the array and &quot;<strong>lowerBounds</strong>&quot; indicates what is the starting lower bound of each dimension array.</p>
<p>To understand the concept in a simple way, let&#8217;s consider the single dimension array and the following code is used to create the instance</p>
<blockquote>
<pre class="code"><font size="2"><span style="color:green;">// Create the instance of an Array
</span><span style="color:#2b91af;">Array </span>myArray = <span style="color:#2b91af;">Array</span>.CreateInstance(<span style="color:blue;">typeof</span>(<span style="color:blue;">int</span>), <span style="color:blue;">new</span>[] { 4 }, <span style="color:blue;">new</span>[] { 2011 });

</font><font size="2"><span style="color:green;">// Set the values to array
</span>myArray.SetValue(5, 2005);
myArray.SetValue(6, 2006);
myArray.SetValue(7, 2007);
myArray.SetValue(8, 2008);   

</font><font size="2"><span style="color:green;">// Display the lower bound of the array
</span><span style="color:#2b91af;">Console</span>.WriteLine(myArray.GetLowerBound(0));  

</font><font size="2"><span style="color:green;">// Display the upper bound of the array
</span><span style="color:#2b91af;">Console</span>.WriteLine(myArray.GetUpperBound(0));  

</font><font size="2"><span style="color:green;">// Display all the items in the array
</span><span style="color:blue;">for </span>(<span style="color:blue;">int </span>i = myArray.GetLowerBound(0); i &lt;= myArray.GetUpperBound(0); i++)
<span style="color:#2b91af;">    Console</span>.WriteLine(myArray.GetValue(i));</font></pre>
</blockquote>
<p><strong>Pros:</strong></p>
<p>1. More meaningful index, based on scenario.</p>
<p><strong>Cons:</strong></p>
<ol>
<li>Slow performance. </li>
<li>Non CLS complaint. </li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=217&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2011/12/19/create-non-zero-indexed-arrays-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>
	</item>
		<item>
		<title>Display HTML content through ASP.Net MVC with Razor view engine</title>
		<link>http://rajeshkumara.wordpress.com/2011/08/26/display-html-content-through-asp-net-mvc-with-razor-view-engine/</link>
		<comments>http://rajeshkumara.wordpress.com/2011/08/26/display-html-content-through-asp-net-mvc-with-razor-view-engine/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 09:26:57 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[ASP.Net MVC]]></category>

		<guid isPermaLink="false">https://rajeshkumara.wordpress.com/2011/08/26/display-html-content-through-asp-net-mvc-with-razor-view-engine/</guid>
		<description><![CDATA[In this post, I will show you how to display HTML text on web page through an ASP.Net MVC application with Razor as the View Engine. The goal is to read file content from a specified location and display on web page. Prerequisites: Visual Studio 2010 ASP.Net MVC3 (http://www.asp.net/mvc/mvc3) Let’s first create a new MVC3 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=203&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="3" face="Tahoma"><font size="1" face="Verdana">In this post, I will show you how to display HTML text on web page through an ASP.Net MVC application with Razor as the View Engine. The goal is to read file content from a specified location and display on web page.</font></font><br />
<blockquote>
<p><font size="1" face="Verdana"><strong><u>Prerequisites:</u></strong></font></p>
<p><font size="1" face="Verdana">Visual Studio 2010         <br />ASP.Net MVC3 (</font><a href="http://www.asp.net/mvc/mvc3)"><font size="1" face="Verdana">http://www.asp.net/mvc/mvc3)</font></a>        </p>
</blockquote>
<p><font size="1"></font></p>
<p><font size="1">Let’s first create a new MVC3 project. Please follow the below steps to do so:</font></p>
<p><font size="1">1. Open Visual Studio 2010.</font></p>
<p><font size="1">2. Click on Create Project and select ASP.Net MVC3 template. Give any project name that you prefer and click on Next.</font></p>
<p><a href="http://rajeshkumara.files.wordpress.com/2011/08/image1.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;margin:5px;" title="Image1" border="0" alt="Image1" src="http://rajeshkumara.files.wordpress.com/2011/08/image1_thumb.jpg?w=244&#038;h=76" width="244" height="76" /></a><font size="1"></font></p>
<p><font size="1">3. Chose the options as Intranet application. View engine as Razor. Select Html5 option.</font></p>
<p><a href="http://rajeshkumara.files.wordpress.com/2011/08/image2.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:5px;" title="Image2" border="0" alt="Image2" src="http://rajeshkumara.files.wordpress.com/2011/08/image2_thumb.jpg?w=163&#038;h=101" width="163" height="101" /></a></p>
<p><font size="1">4. Once you click on Ok, you will see the project structure as shown below:</font></p>
<p><a href="http://rajeshkumara.files.wordpress.com/2011/08/image3.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:5px;" title="Image3" border="0" alt="Image3" src="http://rajeshkumara.files.wordpress.com/2011/08/image3_thumb.jpg?w=195&#038;h=88" width="195" height="88" /></a></p>
<p><font size="1">5. When you run the application without make ANY changes, you will be able to see a home page with the welcome message. </font></p>
<p><font size="1">6. Let’s wipe out default messages as we don’t need them at all. To change the application title, move to Views –&gt; Shared folder, double click on _Layout.cshtml page to open.</font></p>
<p>7. In body section, change the “My MVC Application” to “Log Viewer application”.</p>
<p>8. Let’s create the model now that holds the file names list and selected file content. To do this, right click on “Model” folder, select Add –&gt; New class option. Give the name as “<font size="2"><font face="Courier New"><span style="color:#2b91af;">LogFileModel</span></font></font>” and select Ok button. Add the following code:</p>
<blockquote><p><span style="color:blue;"><font size="2" face="Courier New">public class </font></span><font size="2"><font face="Courier New"><span style="color:#2b91af;">LogFileModel           <br /></span>{          <br />&#160;&#160;&#160; <span style="color:blue;">public </span><span style="color:#2b91af;">List</span>&lt;<span style="color:#2b91af;">SelectListItem</span>&gt; NamesList { <span style="color:blue;">get</span>; <span style="color:blue;">set</span>; }          </p>
<p>&#160;&#160;&#160; <span style="color:blue;">public string </span>SelectedFileName { <span style="color:blue;">get</span>; <span style="color:blue;">set</span>; }          </p>
<p>&#160;&#160;&#160; [<span style="color:#2b91af;">AllowHtml</span>]          <br />&#160;&#160;&#160; <span style="color:blue;">public string </span>SelectedFileContent { <span style="color:blue;">get</span>; <span style="color:blue;">set</span>; }          <br />}</font></font>      </p>
</blockquote>
<p>The important point to consider here is [<span style="color:#2b91af;">AllowHtml</span>]. This attribute allows us to display the HTML content.</p>
<p>9. For this example, let’s assume that we want to display the files information on the “Home” page itself. So, let’s go to HomeController. Please remember that ASP.Net MVC strictly follows naming conventions. The prefix of “Controller” represents the action that we are trying to perform. Here, “Home” represents, we want to display “Home” page (Index is the alias name).</p>
<p>10. Another important point is, ASP.Net MVC is a stateless application. It does not maintain View state. So, if we want to differentiate between normal page request and post back page request, we need to make use of other attributes such as “<span style="color:#2b91af;">HttpGet</span>” and “<span style="color:#2b91af;">HttpPost</span>”.</p>
<p>11. So, we want to do like this. When the page is requested freshly, we only display the list of files that are available in the specified folder. When the user selects the file and clicks on “View” button, we will get the HTML/text content from server and show on web page.</p>
<p>12. Let’s write the code to display list of files from selected folder as:</p>
<blockquote><p><font size="2"><font face="Courier New"><span style="color:blue;">public class </span><span style="color:#2b91af;">HomeController </span>: </font></font><font size="2"><font face="Courier New"><span style="color:#2b91af;">Controller           <br /></span>{          <br />&#160;&#160; <span style="color:blue;">private </span><span style="color:#2b91af;">LogFileModel </span>_logFileModel;          <br />&#160;&#160; <span style="color:blue;">string </span>directoryPath = <span style="color:#a31515;">@&quot;C:\Log&quot;</span>;          </p>
<p>&#160;&#160; </font></font><font size="2"><font face="Courier New"><font color="#ff0000"><strong>[<span style="color:#2b91af;">HttpGet</span>]</strong>            <br /></font>&#160;&#160; <span style="color:blue;">public </span><span style="color:#2b91af;">ViewResult </span>Index()          <br />&#160;&#160; {          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; _logFileModel = <span style="color:blue;">new </span><span style="color:#2b91af;">LogFileModel</span>();          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; _logFileModel.NamesList = GetLogFileNames();          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; </font></font><font face="Courier New"><font size="2"><span style="color:green;">// return data to View           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span><span style="color:blue;">return </span>View(_logFileModel);          <br />&#160;&#160; }</font>        <br /></font></p>
</blockquote>
<blockquote><p><font face="Courier New"><font size="2"><span style="color:blue;">private </span><span style="color:#2b91af;">List</span>&lt;<span style="color:#2b91af;">SelectListItem</span>&gt; GetLogFileNames()          <br />{          <br />&#160;&#160;&#160;&#160; </font></font><font face="Courier New"><font size="2"><span style="color:green;">// Get the List of files           <br />&#160;&#160;&#160;&#160; // Order them by last write time            <br />&#160;&#160;&#160; </span><span style="color:blue;">var </span>fileNamesQuery = <span style="color:blue;">from</span>file <span style="color:blue;">in new</span><span style="color:#2b91af;">DirectoryInfo</span>(directoryPath).GetFiles()          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color:blue;">orderby </span>file.LastWriteTime          <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color:blue;">select new</span></font></font><font face="Courier New"><font size="2"><span style="color:#2b91af;">SelectListItem           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span>{          <br />&#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; Text = file.Name,          <br />&#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; Value = file.Name,          <br />&#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;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160; <span style="color:blue;">return</span>fileNamesQuery.ToList&lt;<span style="color:#2b91af;">SelectListItem</span>&gt;();          <br /></font></font><font face="Courier New"><font size="2">}</font></font></p>
</blockquote>
<p><font size="1">Here, we are trying to retrieve the list of files available in “C:\Log” folder and return to view as a list by populating it into our model class “<span style="color:#2b91af;">LogFileModel</span>” that we created earlier.</font></p>
<p><font size="1">Note: Please make sure that there are some files available in Log files and is accessible to IIS users group.</font></p>
<p><font size="1">13. Now, it’s the time to add dropdownlist and TextArea on web pages to hold the data.</font></p>
<p><font size="1">14. Open the Index.cshtml file while is under Views –&gt; Home folder and the following content:</font></p>
<blockquote><pre class="code"><font size="2"><span style="background:yellow;">@{
</span>    ViewBag.Title = <span style="color:#a31515;">&quot;Home Page&quot;</span>;
</font><font size="2"><span style="background:yellow;">}
@model </span>LogViewer.Models.</font><font size="2"><span style="color:#2b91af;">LogFileModel

</span><span style="color:blue;">&lt;</span><span style="color:maroon;">p</span></font><font size="2"><span style="color:blue;">&gt;
   </span><span style="background:yellow;">@</span><span style="color:blue;">using </span>(Html.BeginForm())
   {
       <span style="color:blue;">&lt;</span><span style="color:maroon;">p</span><span style="color:blue;">&gt;</span>Log files:
           <span style="background:yellow;">@</span>Html.DropDownListFor(x =&gt; x.SelectedFileName, Model.NamesList, <span style="color:#a31515;">&quot;Choose the Log file&quot;</span>)
           <span style="color:blue;">&lt;</span><span style="color:maroon;">input </span><span style="color:red;">type</span><span style="color:blue;">=&quot;submit&quot; </span><span style="color:red;">value</span></font><font size="2"><span style="color:blue;">=&quot;View&quot; /&gt;
       &lt;/</span><span style="color:maroon;">p</span></font><font size="2"><span style="color:blue;">&gt;
   </span>}
   <span style="background:yellow;">@</span>Html.TextAreaFor(m =&gt; m.SelectedFileContent, 15, 105, <span style="color:blue;">new </span>{ @style = <span style="color:#a31515;">&quot;resize: none;&quot; </span>})
<span style="color:blue;">&lt;/</span><span style="color:maroon;">p</span></font><span style="color:blue;"><font size="2">&gt;</font>

</span></pre>
</blockquote>
<p>15. Let’s try to understand Razor here…</p>
<p><font size="1"><strong>ViewBag </strong>is like a Dictionary object that can be accessed and shared between View and Controller. We can pass data between these withit his.</font></p>
<p><font size="1"><strong><span style="background:yellow;">@model </span>LogViewer.Models.</strong><span style="color:#2b91af;"><strong>LogFileModel</strong> </span>can be referred as a string type model binding to the view. With this, View (.cshtml) will be able to know which model it trying to speak to.</font></p>
<p><font size="1">As we want to post back the page with the selected file, we need to encapsulate the HTML tags inside “form” tag. In Razor, we use it as Html.BeginForm().</font></p>
<p><font size="1">@<strong>Html.DropDownListFor </strong>is used to display the list of files that are passed to View. When the user selects a file, its file name value will automatically be assigned to “SelectedFileName” property of “<span style="color:#2b91af;">LogFileModel</span>” object.</font></p>
<p><font size="1"><strong>@Html.TextgAreaFor </strong>renders a “TextArea” control on web page to actually display the file content.</font></p>
<p><font size="1">16. When we run our application now, you may see the UI as:</font></p>
<p><a href="http://rajeshkumara.files.wordpress.com/2011/08/image4.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:5px;" title="Image4" border="0" alt="Image4" src="http://rajeshkumara.files.wordpress.com/2011/08/image4_thumb.jpg?w=244&#038;h=83" width="244" height="83" /></a></p>
<p><font size="1">17. When you select a file and click on “View”, you will see no action. So, let’s handle that event now. To do this, go back to HomeController and add the following code:</font></p>
<blockquote>
<pre class="code"><font size="2">[<span style="color:#2b91af;">HttpPost</span>]
[<span style="color:#2b91af;">ValidateInput</span>(<span style="color:blue;">false</span>)]
<span style="color:blue;">public </span><span style="color:#2b91af;">ViewResult </span>Index(<span style="color:#2b91af;">LogFileModel </span>logFileModel)
{
    logFileModel.SelectedFileContent = System.IO.<span style="color:#2b91af;">File</span>.ReadAllText(<span style="color:#2b91af;">Path</span>.Combine(
                                             directoryPath, logFileModel.SelectedFileName));
    logFileModel.NamesList = GetLogFileNames();
    <span style="color:blue;">return </span>View(logFileModel);
}</font></pre>
</blockquote>
<p>18. Here, we are writing an overload method of Index that accepts our model class. We are also marking the method as [<span style="color:#2b91af;">HttpPost</span>] attribute. Another attribute [ValidateInput(false)] will stop validating the input. This allows us to display the HTML content without any problem. If this is not included, you can an error as “Potentially dangerous…”.</p>
<p>19. We are reassigning the FileNames list to the returning model object. We must do it as the ASP.Net MVC do not maintain ViewState.<br />
  </p>
<p>20. That’s all. Our code is ready. Now, run the application, select the file and click on View button. You will be able to see the file content on web page.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=203&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2011/08/26/display-html-content-through-asp-net-mvc-with-razor-view-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/08/image1_thumb.jpg" medium="image">
			<media:title type="html">Image1</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/08/image2_thumb.jpg" medium="image">
			<media:title type="html">Image2</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/08/image3_thumb.jpg" medium="image">
			<media:title type="html">Image3</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/08/image4_thumb.jpg" medium="image">
			<media:title type="html">Image4</media:title>
		</media:content>
	</item>
		<item>
		<title>Debug the .Net code from remote machine</title>
		<link>http://rajeshkumara.wordpress.com/2011/07/11/debug-the-net-code-from-remote-machine/</link>
		<comments>http://rajeshkumara.wordpress.com/2011/07/11/debug-the-net-code-from-remote-machine/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 15:36:36 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Debug]]></category>

		<guid isPermaLink="false">https://rajeshkumara.wordpress.com/2011/07/11/debug-the-net-code-from-remote-machine/</guid>
		<description><![CDATA[Debugging the code from development environment is very easy. The actual problem starts when we want to debug the code that is already deployed in some system (local system, remote system, production server etc.). It’s because, such environments will not have any SDK installed. However, Microsoft still makes developer’s life easier by allowing us to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=199&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Debugging the code from development environment is very easy. The actual problem starts when we want to debug the code that is already deployed in some system (local system, remote system, production server etc.).</p>
<p>It’s because, such environments will not have any SDK installed. However, Microsoft still makes developer’s life easier by allowing us to debug such deployed code from our local machine. This article tries to explain it.</p>
<p><em><strong><u>Limitation: </u></strong>Visual Studio Professional, Premium and Ultimate versions can be used to debug the code. Visual studio Express does <strong>NOT</strong> allow you to debug the code through a process.</em></p>
<p><strong>What needs to be done?</strong></p>
<p>We need to do two things for debugging from remote machine:</p>
<ul>
<li>Preparing remote system. </li>
<li>Attach the deployed code to source code from local machine. </li>
</ul>
<p><strong>What are required?</strong></p>
<p>We need two things to start the remote debugging:</p>
<ul>
<li>PDB files </li>
<li>MSVSMON.exe </li>
<li>You must have access to the remote system. </li>
<li>Your remote and local system must be in same domain (or in trusted domain list). </li>
</ul>
<p>If you are not sure what are pdb files, A program database (PDB) file holds debugging and project state information that allows incremental linking of a debug configuration of your program. A PDB file is created when you build with<strong> /debug</strong>. (extracted from MSDN).</p>
<p>MSVSMON (Microsft Visual Studio remote debugging monitor) acts as an agent from remote system for Visual Studio. It comes with SDK installation and is generally available at <strong>C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\Remote Debugger\x64</strong><em><strong>\</strong>msvsmon.exe. (x64 indicates your operating system mode).</em></p>
<p>The most important point to remember is, we must have the same version of PDB files of the original source code deployed on remote machine. Please <a href="http://blogs.msdn.com/b/jimgries/archive/2007/07/06/why-does-visual-studio-require-debugger-symbol-files-to-exactly-match-the-binary-files-that-they-were-built-with.aspx"><u>read this article</u></a> for more information.</p>
<p><strong>Preparing remote system:</strong></p>
<p>Please feel free to copy the entire x64 (as mentioned above) to the remote machine where the code is deployed and run the msvsmon.exe file. You may see the screen as given below:</p>
<p><a href="http://rajeshkumara.files.wordpress.com/2011/07/image1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;margin:5px;" title="image" border="0" alt="image" src="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb1.png?w=474&#038;h=152" width="474" height="152" /></a></p>
<p>Now, move all .pdb files to the bin directory of the deployed application. Now, it’s the time to identify the process id of the application that you want to debug. Task Manager shows list of processes running on the current (remote)and its Ids against them. It is very straight forward for finding process Ids for services or exe files. However, it is bit different for web application. Please <a href="http://rajeshkumara.wordpress.com/2010/12/10/find-process-ids-for-web-sites-running-under-iis/">read <u>my article here</u></a> to find out more.</p>
<p><strong>Attach the deployed code to source code from local machine:</strong></p>
<p>Open the source code in Visual Studio. Go to “Debug –&gt; Attach to Process” option. You should be able to view “Attach to Process” window.</p>
<p>Leave the “Transport” to Default. In the “Qualifier” text box, type the text as &lt;DomainName<font size="4">\</font>UserName<strong><font size="4">@</font></strong>ServerName&gt; as displayed in msvsmon.exe window given above and then hit Enter key.</p>
<p>With this, Visual studio makes the connection to remote system and gets all processes list running on remote machine. You may see the screens in local machine and remote machine as below:</p>
<p><a href="http://rajeshkumara.files.wordpress.com/2011/07/image2.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;margin:5px;" title="image" border="0" alt="image" src="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb2.png?w=254&#038;h=172" width="254" height="172" /></a>&#160;<a href="http://rajeshkumara.files.wordpress.com/2011/07/image3.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;margin:5px;" title="image" border="0" alt="image" src="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb3.png?w=269&#038;h=76" width="269" height="76" /></a></p>
<p>Now chose, the right process Id and hit “Attach” button. With this, you are ready to debug the code. Happy debugging <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://rajeshkumara.files.wordpress.com/2011/07/wlemoticon-smile.png" />.</p>
<p>References: <em>MSDN</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=199&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2011/07/11/debug-the-net-code-from-remote-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/07/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Remote Desktop Connection Manager</title>
		<link>http://rajeshkumara.wordpress.com/2011/07/09/remote-desktop-connection-manager/</link>
		<comments>http://rajeshkumara.wordpress.com/2011/07/09/remote-desktop-connection-manager/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 06:47:11 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://rajeshkumara.wordpress.com/2011/07/09/remote-desktop-connection-manager/</guid>
		<description><![CDATA[If you are working with multiple remote desktop and feeling uncomfortable with regular “Remote Desktop Connection” tool, then you can try with “Remote Desktop connection Manager” from Microsoft. It is free, very light weight, allows you to configure multiple remote desktop and can connect to all of them one-by-one or all at once. You can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=190&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are working with multiple remote desktop and feeling uncomfortable with regular “Remote Desktop Connection” tool, then you can try with “Remote Desktop connection Manager” from Microsoft. It is free, very light weight, allows you to configure multiple remote desktop and can connect to all of them one-by-one or all at once.</p>
<p>You can download this tool at: <a title="http://www.microsoft.com/download/en/details.aspx?id=21101" href="http://www.microsoft.com/download/en/details.aspx?id=21101">http://www.microsoft.com/download/en/details.aspx?id=21101</a></p>
<p><a href="http://rajeshkumara.files.wordpress.com/2011/07/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:5px;" title="image" border="0" alt="image" src="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb.png?w=420&#038;h=130" width="420" height="130" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/190/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=190&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2011/07/09/remote-desktop-connection-manager/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2011/07/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Find Process Ids for web sites running under IIS 6</title>
		<link>http://rajeshkumara.wordpress.com/2010/12/10/find-process-ids-for-web-sites-running-under-iis/</link>
		<comments>http://rajeshkumara.wordpress.com/2010/12/10/find-process-ids-for-web-sites-running-under-iis/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 12:43:46 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">https://rajeshkumara.wordpress.com/2010/12/10/find-process-ids-for-web-sites-running-under-iis/</guid>
		<description><![CDATA[During the debugging, you can attach the current code from Visual Studio to hosted web service or application. This helps to debug the code in Visual Studio while requests are coming to IIS web service or application. However, this is possible only when you know the Process Id. The below command display the list of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=161&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During the debugging, you can attach the current code from Visual Studio to hosted web service or application. This helps to debug the code in Visual Studio while requests are coming to IIS web service or application. However, this is possible only when you know the Process Id.</p>
<p>The below command display the list of process ids running under IIS:</p>
<p><strong>cscript %systemroot%\system32\iisapp.vbs</strong></p>
<p>You can get the result as:</p>
<p><a href="http://rajeshkumara.files.wordpress.com/2010/12/image1.png"><img title="image" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="137" alt="image" src="http://rajeshkumara.files.wordpress.com/2010/12/image_thumb1.png?w=558&#038;h=137" width="558" border="0" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=161&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2010/12/10/find-process-ids-for-web-sites-running-under-iis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2010/12/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Access Team Foundation Server through webs ervices</title>
		<link>http://rajeshkumara.wordpress.com/2010/10/21/access-team-foundation-server-through-webs-ervices/</link>
		<comments>http://rajeshkumara.wordpress.com/2010/10/21/access-team-foundation-server-through-webs-ervices/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 13:40:15 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[Team Foundation Server]]></category>

		<guid isPermaLink="false">http://rajeshkumara.wordpress.com/?p=150</guid>
		<description><![CDATA[Outsourcing Services? Try Freelancer.com. Team Foundation web Services comes in two flavors V1.0, and V2.0, perhaps for backward compatibility with Team Explorer 2005 as given below: Build Service V1.0 http://TFSServerName:ServerPortNumber/Build/V1.0/BuildController.asmx http://TFSServerName:ServerPortNumber/Build/V1.0/BuildStore.asmx http://TFSServerName:ServerPortNumber/Build/V1.0/Integration.asmx http://TFSServerName:ServerPortNumber/Build/V1.0/PublishTestResultsBuildService.asmx http://TFSServerName:ServerPortNumber/Build/V1.0/PublishTestResultsBuildService2.asmx V2.0 http://TFSServerName:ServerPortNumber/Build/V2.0/BuildService.asmx http://TFSServerName:ServerPortNumber/Build/V2.0/Integration.asmx Services Service V1.0 http://TFSServerName:ServerPortNumber/Services/v1.0/AuthorizationService.asmx http://TFSServerName:ServerPortNumber/Services/v1.0/CommonStructureService.asmx http://TFSServerName:ServerPortNumber/Services/v1.0/EventService.asmx http://TFSServerName:ServerPortNumber/Services/v1.0/GroupSecurityService.asmx http://TFSServerName:ServerPortNumber/Services/v1.0/ProcessTemplate.asmx http://TFSServerName:ServerPortNumber/Services/v1.0/projectMaintenance.asmx http://TFSServerName:ServerPortNumber/Services/v1.0/Registration.asmx http://TFSServerName:ServerPortNumber/Services/v1.0/ServerStatus.asmx V2.0 http://TFSServerName:ServerPortNumber/Services/v2.0/GroupSecurityService2.asmx Version Control Service V1.0 http://TFSServerName:ServerPortNumber/VersionControl/v1.0/Administration.asmx [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=150&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- Beginning of Freelancer.com Affiliates Widget --></p>
<div id="GAF_projects_hs2_box" style="width:468px;height:60px;font-family:sans-serif;font-size:11px;padding:0;">
<div style="overflow:hidden;padding:0;">
<div id="GAF_projects_hs2" style="padding:3px;"></div>
<div style="padding:0;" align="right"><span style="font-size:11px;padding:0;"><br />
<a href="http://www.freelancer.com/" target="_blank"><font color="blue">Outsourcing Services</font></a>?<br />
Try <a href="http://www.freelancer.com/" target="_blank"><font color="blue">Freelancer.com</font></a>.
</div>
</div>
</div>
<p><!-- End of Freelancer.com Affiliates Widget --></p>
<p>Team Foundation web Services comes in two flavors V1.0, and V2.0, perhaps for backward compatibility with Team Explorer 2005 as given below:</p>
<p><strong>Build Service</strong><br />
<strong>V1.0</strong></p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Build/V1.0/BuildController.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Build/V1.0/BuildStore.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Build/V1.0/Integration.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Build/V1.0/PublishTestResultsBuildService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Build/V1.0/PublishTestResultsBuildService2.asmx</p>
<p><strong>V2.0</strong></p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Build/V2.0/BuildService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Build/V2.0/Integration.asmx</p>
<p><strong>Services Service</strong><br />
<strong>V1.0  </strong>    </p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/AuthorizationService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/CommonStructureService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/EventService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/GroupSecurityService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/ProcessTemplate.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/projectMaintenance.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/Registration.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v1.0/ServerStatus.asmx</p>
<p><strong>V2.0</strong></p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Services/v2.0/GroupSecurityService2.asmx</p>
<p><strong>Version Control Service</strong><br />
<strong>V1.0</strong></p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/VersionControl/v1.0/Administration.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/VersionControl/v1.0/Integration.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/VersionControl/v1.0/ProxyStatistics.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/VersionControl/v1.0/Repository.asmx</p>
<p><strong>Warehouse Service</strong><br />
<strong>V1.0</strong></p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/Warehouse/v1.0/warehousecontroller.asmx</p>
<p><strong>WorkItem Tracking Service</strong><br />
<strong>V1.0</strong></p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/WorkItemTracking/v1.0/ClientService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/WorkItemTracking/v1.0/ConfigurationSettingsService.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/WorkItemTracking/v1.0/ExternalServices.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/WorkItemTracking/v1.0/Integration.asmx</p>
<p>http://<em>TFSServerName:ServerPortNumber</em>/WorkItemTracking/v1.0/SyncEventsListener.asmx</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=150&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2010/10/21/access-team-foundation-server-through-webs-ervices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>
	</item>
		<item>
		<title>WCF useful links</title>
		<link>http://rajeshkumara.wordpress.com/2010/06/29/wcf-useful-links/</link>
		<comments>http://rajeshkumara.wordpress.com/2010/06/29/wcf-useful-links/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 10:54:56 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://rajeshkumara.wordpress.com/?p=144</guid>
		<description><![CDATA[WCF &#8211; http://msdn.microsoft.com/en-us/netframework/aa663324.aspx (.net Framework Developer center, central resource for all things WCF) WCF 3.5 samples &#8211; http://msdn.microsoft.com/en-us/library/ms751514.aspx WCF 4.0 samples &#8211; http://msdn.microsoft.com/library/dd483346(VS.100).aspx (good resource to learn the basics by playing with samples) WCF screencasts &#8211; http://msdn.microsoft.com/en-us/netframework/wcf-screencasts.aspx .Net endpoint blog &#8211; http://blogs.msdn.com/endpoint/ (Blog by the .NET and AppFabric teams about WCF and WF development, deployment, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=144&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>WCF &#8211; <a href="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx">http://msdn.microsoft.com/en-us/netframework/aa663324.aspx </a><br />
(.net Framework Developer center, central resource for all things WCF)</p>
<p>WCF 3.5 samples &#8211; <a href="http://msdn.microsoft.com/en-us/library/ms751514.aspx">http://msdn.microsoft.com/en-us/library/ms751514.aspx</a><br />
WCF 4.0 samples &#8211; <a href="http://msdn.microsoft.com/library/dd483346(VS.100).aspx">http://msdn.microsoft.com/library/dd483346(VS.100).aspx</a><br />
(good resource to learn the basics by playing with samples)</p>
<p>WCF screencasts &#8211; <a href="http://msdn.microsoft.com/en-us/netframework/wcf-screencasts.aspx">http://msdn.microsoft.com/en-us/netframework/wcf-screencasts.aspx</a></p>
<p>.Net endpoint blog &#8211; <a href="http://blogs.msdn.com/endpoint/">http://blogs.msdn.com/endpoint/</a><br />
(Blog by the .NET and AppFabric teams about WCF and WF development, deployment, and management)</p>
<p>Bug report/ Feature request/ Feedback to the product team &#8211; <a href="https://connect.microsoft.com/wcf">https://connect.microsoft.com/wcf</a><br />
(There are useful resources mentioned at the bottom of this page as well)</p>
<p>Detailed WCF security guidance -<a href="http://www.codeplex.com/WCFSecurity">http://www.codeplex.com/WCFSecurity</a></p>
<p>Detailed debugging using WCF tracing &#8211; <a href="http://msdn.microsoft.com/en-us/library/ms733025.aspx">http://msdn.microsoft.com/en-us/library/ms733025.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=144&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2010/06/29/wcf-useful-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable https on Silverlight application</title>
		<link>http://rajeshkumara.wordpress.com/2010/06/18/enable-https-on-silverlight-application/</link>
		<comments>http://rajeshkumara.wordpress.com/2010/06/18/enable-https-on-silverlight-application/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 09:14:12 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rajeshkumara.wordpress.com/?p=134</guid>
		<description><![CDATA[The following steps can allow you to convert http based silverlight application to https: Changes required in web.config at service side: 1. Replace “mexHttpBinding” with “mexHttpsBinding”. 2. Remove “identity” node from “endpoint”. 3. Replace “httpGetEnabled” with “httpsGetEnabled”. 4. Make sure that clientaccesspolicy and crossdomain files are at the root of the website. Changes required in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=134&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The following steps can allow you to convert http based silverlight application to https:</p>
<p><strong>Changes required in web.config at service side:</strong><br />
<br />
1. Replace <strong>“mexHttpBinding”</strong> with <strong>“mexHttpsBinding”</strong>.<br />
2. Remove <strong>“identity”  </strong>node from <strong>“endpoint”.</strong><br />
3. Replace <strong>“httpGetEnabled” </strong>with <strong>“httpsGetEnabled”</strong>.<br />
4. Make sure that clientaccesspolicy and crossdomain files are at the root of the website.</p>
<p><strong>Changes required in ServiceReferences.Clientconfig at client side:</strong><br />
<br />
1. Replace security mode “None” with “Transport”.<br />
2. Point to right https URL.</p>
<p></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=134&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2010/06/18/enable-https-on-silverlight-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>
	</item>
		<item>
		<title>Compare WCF with other Technologies</title>
		<link>http://rajeshkumara.wordpress.com/2010/04/20/compare-wcf-with-other-technologies/</link>
		<comments>http://rajeshkumara.wordpress.com/2010/04/20/compare-wcf-with-other-technologies/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 10:39:54 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://rajeshkumara.wordpress.com/?p=121</guid>
		<description><![CDATA[The below diagram (extracted from Microsoft web) gives us the comparison of WCF with other services:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=121&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The below diagram (extracted from Microsoft web) gives us the comparison of WCF with other services:</p>
<p><a href="http://rajeshkumara.files.wordpress.com/2010/04/communicationstyles.jpg"><img src="http://rajeshkumara.files.wordpress.com/2010/04/communicationstyles.jpg?w=300&#038;h=156" alt="" title="WCF Features" width="300" height="156" class="aligncenter size-medium wp-image-122" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=121&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2010/04/20/compare-wcf-with-other-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>

		<media:content url="http://rajeshkumara.files.wordpress.com/2010/04/communicationstyles.jpg?w=300" medium="image">
			<media:title type="html">WCF Features</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Import SSL certificate in Windows 2003 server</title>
		<link>http://rajeshkumara.wordpress.com/2010/01/12/how-to-import-ssl-certificate-in-windows-2003-server/</link>
		<comments>http://rajeshkumara.wordpress.com/2010/01/12/how-to-import-ssl-certificate-in-windows-2003-server/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 09:04:07 +0000</pubDate>
		<dc:creator>Rajesh Kumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rajeshkumara.wordpress.com/?p=118</guid>
		<description><![CDATA[Follow the steps given below to import the SSL certificate available in Windows 2003 server (To know how to create the self signed SSL in Windows 2003, please read the article(click here) on my blog). 1. Click on Start -&#62; Run. 2. Type &#8220;mmc&#8221; and hit Enter key. 3. Click on File -&#62; &#8220;Add/Remove Snap-in&#8221;. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=118&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Follow the steps given below to import the SSL certificate available in Windows 2003 server (To know how to create the self signed SSL in Windows 2003, please read the <a href="http://rajeshkumara.wordpress.com/2010/01/12/how-to-create-self-signed-ssl-certificate-in-windows-2003-server/">article(click here) </a>on my blog).</p>
<p>1. Click on Start -&gt; Run.<br />
2. Type &#8220;<strong>mmc</strong>&#8221; and hit Enter key.<br />
3. Click on File -&gt; &#8220;Add/Remove Snap-in&#8221;.<br />
4. Click on &#8220;Add&#8221; button.<br />
5. Select &#8220;Certificates&#8221; option and click on &#8220;Add&#8221; button.<br />
6. Select &#8220;Computer account&#8221; and click on &#8220;Next&#8221; button.<br />
7. Click on &#8220;Finish&#8221; button and then on &#8220;Close&#8221; button.<br />
8. Click on &#8220;Ok&#8221; button.<br />
9. Expand &#8220;Certificates&#8221; and &#8220;Trusted Root Certification Authorities&#8221;.<br />
10. Select the sub-item &#8220;Certificates&#8221;.<br />
11. Click on the right certificate from the right side window.<br />
12. Right-click on that certificate -&gt; All Tasks -&gt; Export&#8230;<br />
13. Click on &#8220;Next&#8221; button.<br />
14. Choose the required format and click on &#8220;Next&#8221; button.<br />
15. Type the file name and path to save.<br />
16. Click on &#8220;Finish&#8221; button.</p>
<p>That&#8217;s all you need to do. Now you can send the &#8220;.cer&#8221; file to anyone who want to install it on their local systems.</p>
<p>Please feel free to let me know if you have any questions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rajeshkumara.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rajeshkumara.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rajeshkumara.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rajeshkumara.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rajeshkumara.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rajeshkumara.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rajeshkumara.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rajeshkumara.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rajeshkumara.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rajeshkumara.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rajeshkumara.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rajeshkumara.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rajeshkumara.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rajeshkumara.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rajeshkumara.wordpress.com&amp;blog=6461625&amp;post=118&amp;subd=rajeshkumara&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rajeshkumara.wordpress.com/2010/01/12/how-to-import-ssl-certificate-in-windows-2003-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/04358d4b4050410bbe7be8f0e753fafb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nani</media:title>
		</media:content>
	</item>
	</channel>
</rss>
