<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>Hari Mukkapati</title>
    <description />
    <link>http://www.mukkapati.com/blog/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 1.5.0.7</generator>
    <language>en-US</language>
    <blogChannel:blogRoll>http://www.mukkapati.com/blog/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.mukkapati.com/blog/syndication.axd</blogChannel:blink>
    <dc:creator>Hari Mukkapati</dc:creator>
    <dc:title>Hari Mukkapati</dc:title>
    <geo:lat>0.000000</geo:lat>
    <geo:long>0.000000</geo:long>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/HariMukkapati" /><feedburner:info uri="harimukkapati" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
      <title>Developing Async apps using WCF and MSMQ -- Part 1</title>
      <description>&lt;h4&gt;Software Requirements&lt;/h4&gt;  &lt;ul&gt;   &lt;li&gt;Visual Studio 2008&amp;#160; (Also works in 2005, but not tested for this tutorial.) &lt;/li&gt;    &lt;li&gt;MSMQ Installed and Running.&amp;#160; To Implement Security MSMQ installation must be integrated to AD. &lt;/li&gt;    &lt;li&gt;.NET 3.0 Framework or higher &lt;/li&gt;    &lt;li&gt;IIS &lt;/li&gt;    &lt;li&gt;Distributed Transaction Coordinator (DTC) Must be installed and running. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;em&gt;&lt;span style="font-size: x-small"&gt;The Goal here is to setup an asynchronous communication between a client and server using WCF and MSMQ.&amp;#160; To do that I use a “WCFQ” solution which contains 3 projects.&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;blockquote&gt;     &lt;p&gt;&lt;em&gt;The Goal here is to setup an asynchronous communication between a client and server using WCF and MSMQ.&amp;#160; To do that I use a “WCFQ” solution which contains 3 projects.&lt;/em&gt;&amp;#160;&lt;/p&gt;      &lt;ul&gt;       &lt;li&gt;&lt;strong&gt;WCFQ.Service&lt;/strong&gt; – Hosts Queued WCF Service. &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;WCFQ.Contract&lt;/strong&gt; – Contains the Data and Service contracts for the Queued WCF Service. &lt;/li&gt;        &lt;li&gt;&lt;strong&gt;WCFQ.Client&lt;/strong&gt; – A Console application to call WCFQ.Service&lt;/li&gt;     &lt;/ul&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;   &lt;/blockquote&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;strong&gt;Step 1:&lt;/strong&gt;&amp;#160; Open Visual Studio 2008 IDE and Create a “WCF Service Application”&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image001.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image001" border="0" alt="image001" src="http://www.mukkapati.com/blog/image.axd?picture=image001_thumb.jpg" width="644" height="459" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 2:&lt;/strong&gt; Add another “Class Library” Project and Delete “Class1.cs” from the project.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 3:&lt;/strong&gt; Delete IService1.cs in WCFQ.Service and add IService1.cs to WCFQ.Contract and replace the code with below.&amp;#160; The trick here is when building WCF-MSMQ services is to ensure that all the operation contracts are defined with IsOneWay=true.&lt;/p&gt;  &lt;pre class="brush: csharp;"&gt;using System; 
using System.Runtime.Serialization; 
using System.ServiceModel; 

namespace WCFQ.Contract 
{ 
    [ServiceContract] 
    public interface IService1 
    { 
        [OperationContract(IsOneWay=true)] 
        void SendData(QData composite); 
    } 

    //An object for Data Contract 
    [DataContract] 
    public class QData 
    { 
        [DataMember] 
        public string Name { get; set; } 
    } 
}
 &lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;Step 4:&lt;/strong&gt; Add references of “System.ServiceModel” and “System.Runtime.Serialization” to WCFQ.Contract. This is where you define the contract.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5:&lt;/strong&gt; Reference WCFQ.Contract project in WCFQ.Service and change the Service1.svc.cs code should look like this.&lt;/p&gt;

&lt;pre class="brush: csharp;"&gt;using System; 
using System.Diagnostics; 
using WCFQ.Contract; 
namespace WCFQ.Service 
{ 
    public class Service1 : IService1 
    { 
        public void SendData(QData qdata) 
        { 
            //Do something with the data 
            Trace.WriteLine(String.Format(&amp;quot;Name : {0}&amp;quot;, qdata.Name)); 
        } 
    } 
}&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 6:&lt;/strong&gt; Now, The configuration comes into picture. Here is how the ServiceModel part of web.config should look like. We don’t need wsHttpBinding to get net MSMQ to be working.&amp;#160; That is default and I left it that way to make it easy to understand the WCF Service is working.&lt;/p&gt;

&lt;pre class="brush: xml;"&gt;&amp;lt;SYSTEM.SERVICEMODEL&amp;gt;
    &amp;lt;BINDINGS&amp;gt;
        &amp;lt;NETMSMQBINDING&amp;gt;
            &amp;lt;BINDING name=&amp;quot;WCFQNonTransactional&amp;quot; exactlyonce=&amp;quot;false&amp;quot;&amp;gt;
                &amp;lt;SECURITY mode=&amp;quot;None&amp;quot; /&amp;gt;
            &amp;lt;/BINDING&amp;gt;
        &amp;lt;/NETMSMQBINDING&amp;gt;
    &amp;lt;/BINDINGS&amp;gt;
    &amp;lt;SERVICES&amp;gt;
        &amp;lt;SERVICE name=&amp;quot;WCFQ.Service.Service1&amp;quot; behaviorconfiguration=&amp;quot;WCFQ.Service.Service1Behavior&amp;quot;&amp;gt;
            &amp;lt;ENDPOINT contract=&amp;quot;WCFQ.Contract.IService1&amp;quot; binding=&amp;quot;wsHttpBinding&amp;quot; address=&amp;quot;http://localhost/WCFQService/Service1.svc&amp;quot;&amp;gt;
                &amp;lt;IDENTITY&amp;gt;
                    &amp;lt;DNS value=&amp;quot;localhost&amp;quot; /&amp;gt;
                &amp;lt;/IDENTITY&amp;gt;
            &amp;lt;/ENDPOINT&amp;gt;
            &amp;lt;ENDPOINT contract=&amp;quot;WCFQ.Contract.IService1&amp;quot; binding=&amp;quot;netMsmqBinding&amp;quot; address=&amp;quot;net.msmq://localhost/private/WCFQService/Service1.svc&amp;quot; bindingconfiguration=&amp;quot;WCFQNonTransactional&amp;quot; /&amp;gt;
        &amp;lt;/SERVICE&amp;gt;
    &amp;lt;/SERVICES&amp;gt;
    &amp;lt;BEHAVIORS&amp;gt;
        &amp;lt;SERVICEBEHAVIORS&amp;gt;
            &amp;lt;BEHAVIOR name=&amp;quot;WCFQ.Service.Service1Behavior&amp;quot;&amp;gt;
                &amp;lt;SERVICEMETADATA httpgetenabled=&amp;quot;true&amp;quot; /&amp;gt;
                &amp;lt;SERVICEDEBUG includeexceptiondetailinfaults=&amp;quot;false&amp;quot; /&amp;gt;
            &amp;lt;/BEHAVIOR&amp;gt;
        &amp;lt;/SERVICEBEHAVIORS&amp;gt;
    &amp;lt;/BEHAVIORS&amp;gt;
&amp;lt;/SYSTEM.SERVICEMODEL&amp;gt;&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 7:&lt;/strong&gt;&amp;#160; The WCF service to work with MSMQ there is one more rule. That is the queue name which must be same as the URI that is used to Access the WCF Service. So, if the URL is &lt;a href="http://localhost/WCFQService/Service1.svc"&gt;&lt;span style="text-decoration: underline"&gt;http://localhost/WCFQService/Service1.svc&lt;/span&gt;&lt;/a&gt;, then the Queue Name will be “WCFQService/Service1.svc”. This has to be created manually by going to “Computer Management/Services and Applications/Message Queuing/Private Queues”.&amp;#160; When creating the Queue, Do not check “Transactional”. Computer Management can be accessed from Right click on My Computer and click on Manage or “Start -&amp;gt; Run” and typing “Compmgmt.msc” and Hit enter. &lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image002.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image002" border="0" alt="image002" src="http://www.mukkapati.com/blog/image.axd?picture=image002_thumb.jpg" width="644" height="454" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 8:&lt;/strong&gt; After creating the queue, enable Journal by Right click and select properties on the queue. Check the Enabled checkbox inside Journal Area. This is just for tracking purpose that your messages reached MSMQ. Next go to security tab of the properties and Add user “Network Service” and give full control to the user. This is the user who writes and reads out messages from the queue.&lt;/p&gt;

&lt;p&gt;
  &lt;table border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;
      &lt;tr&gt;
        &lt;td valign="top" width="319"&gt;&amp;#160; &lt;p&gt;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image003.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image003" border="0" alt="image003" src="http://www.mukkapati.com/blog/image.axd?picture=image003_thumb.jpg" width="307" height="386" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;
        &lt;/td&gt;

        &lt;td valign="top" width="319"&gt;&amp;#160; &lt;p&gt;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image004.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image004" border="0" alt="image004" src="http://www.mukkapati.com/blog/image.axd?picture=image004_thumb.jpg" width="310" height="387" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;
        &lt;/td&gt;
      &lt;/tr&gt;
    &lt;/tbody&gt;&lt;/table&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 9:&lt;/strong&gt; Configure the WCFQ.Service to Run in IIS by setting the project properties. Remove the DOT from the WCFQ.Service and Create virtual directory. [Note: Windows 7 or Windows 2008 server must create an application pool which runs with “Network service” User, instead of “ApplicationPoolIdentity” and assign the application pool create to the WCFQService from IIS, INetMgr]&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image005.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image005" border="0" alt="image005" src="http://www.mukkapati.com/blog/image.axd?picture=image005_thumb.jpg" width="639" height="484" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 10:&lt;/strong&gt;&amp;#160; In order to make the WCF to work with MSMQ we need to enable MSMQ WAS listener on the WCFQService application that is just created by running following command from command prompt from location C:\Windows\System32\inetsrv.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;appcmd set app &amp;quot;Default web site/WCFQService&amp;quot; /enabledProtocols:net.msmq,http&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image006.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image006" border="0" alt="image006" src="http://www.mukkapati.com/blog/image.axd?picture=image006_thumb.jpg" width="644" height="217" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This enables the net.msmq protocol on WCFQService application on IIS. &lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 11:&lt;/strong&gt; Now, The WCFQService application is ready to roll. So, let’s get to the client. Add a Console Application to the project.&amp;#160; And add references for WCFQ.Contract project, System.ServiceModel.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 12:&lt;/strong&gt; Without having to create a proxy and access the WCF service, Add a new class called “WCFQService1Client.cs”. The proxy class derives from the class ClientBase&amp;lt;T&amp;gt;. ClientBase&amp;lt;T&amp;gt; accepts a single generic type parameter identifying the service contract that this proxy encapsulates. The Channel property of ClientBase&amp;lt;T&amp;gt; is of the type of that type parameter. The generated subclass of ClientBase&amp;lt;T&amp;gt; simply delegates to Channel the method call.&lt;/p&gt;

&lt;pre class="brush: csharp;"&gt;using System; 
using System.ServiceModel; 
using WCFQ.Contract; 

namespace WCFQ.Client 
{ 
    internal class WCFQService1Client : ClientBase, IService1 
    { 
        public WCFQService1Client(string endpoint) : base(endpoint) 
        { 

        } 

        //IService1 Members 
        public void SendData(QData data) 
        { 
            Channel.SendData(data); 
        } 
    } 
}&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;Step 13:&lt;/strong&gt; Now configure the Client app.config to access the WCF Service.&lt;/p&gt;

&lt;pre class="brush: xml;"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;
&amp;lt;CONFIGURATION&amp;gt;
    &amp;lt;SYSTEM.SERVICEMODEL&amp;gt;
        &amp;lt;BINDINGS&amp;gt;
            &amp;lt;NETMSMQBINDING&amp;gt;
                &amp;lt;BINDING name=&amp;quot;WCFQNonTransactional&amp;quot; exactlyonce=&amp;quot;false&amp;quot;&amp;gt;
                    &amp;lt;SECURITY mode=&amp;quot;None&amp;quot; /&amp;gt;
                &amp;lt;/BINDING&amp;gt;
            &amp;lt;/NETMSMQBINDING&amp;gt;
            &amp;lt;WSHTTPBINDING&amp;gt;
                &amp;lt;BINDING name=&amp;quot;WCFQwsHttp&amp;quot;&amp;gt;
                    &amp;lt;SECURITY mode=&amp;quot;None&amp;quot; /&amp;gt;
                &amp;lt;/BINDING&amp;gt;
            &amp;lt;/WSHTTPBINDING&amp;gt;
        &amp;lt;/BINDINGS&amp;gt;
        &amp;lt;CLIENT&amp;gt;
            &amp;lt;ENDPOINT name=&amp;quot;WCFQNonTransactional&amp;quot; contract=&amp;quot;WCFQ.Contract.IService1&amp;quot; binding=&amp;quot;netMsmqBinding&amp;quot; address=&amp;quot;net.msmq://localhost/private/WCFQService/Service1.svc&amp;quot; bindingconfiguration=&amp;quot;WCFQNonTransactional&amp;quot; /&amp;gt;
            &amp;lt;ENDPOINT name=&amp;quot;WCFQwsHttp&amp;quot; contract=&amp;quot;WCFQ.Contract.IService1&amp;quot; binding=&amp;quot;wsHttpBinding&amp;quot; address=&amp;quot;http://localhost/WCFQService/Service1.svc&amp;quot; bindingconfiguration=&amp;quot;WCFQwsHttp&amp;quot; /&amp;gt;
        &amp;lt;/CLIENT&amp;gt;
    &amp;lt;/SYSTEM.SERVICEMODEL&amp;gt;
&amp;lt;/CONFIGURATION&amp;gt;&lt;/pre&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 13&lt;/strong&gt;: To use the proxy, the client first needs to instantiate a proxy object and provide the constructor with endpoint information from the endpoint section name from the config file. The client can then use the proxy methods to call the service, and when the client is done, the client needs to close the proxy instance. The program.cs will look like this after implementing the code.&lt;/p&gt;

&lt;pre class="brush: csharp;"&gt;using System; 
using WCFQ.Contract; 

namespace WCFQ.Client 
{ 
    class Program 
    { 
        static void Main(string[] args) 
        { 
            QData data = new QData(); 
            data.Message = &amp;quot;Hello World!&amp;quot;;            

            //Send Message 
            using (WCFQService1Client proxy = new WCFQService1Client(&amp;quot;WCFQNonTransactional&amp;quot;)) 
            { 
                Console.WriteLine(&amp;quot;Sending Message {0} &amp;quot;, data.Message); 
                proxy.SendData(data); 

                //Close the client. 
                proxy.Close(); 

            }//Dispose 
            
            Console.Read(); 
        } 
    } 
}&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;Step 14&lt;/strong&gt;: Set WCFQ.Client as the startup project and run……. Here is what needs to be observed to make sure the service and client ran fine.&lt;/p&gt;

&lt;p&gt;Command window of client will show&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image007.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image007" border="0" alt="image007" src="http://www.mukkapati.com/blog/image.axd?picture=image007_thumb.png" width="644" height="231" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;

&lt;p&gt;MSMQ Window will show the journal message count increased by 1.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.mukkapati.com/blog/image.axd?picture=image008.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image008" border="0" alt="image008" src="http://www.mukkapati.com/blog/image.axd?picture=image008_thumb.png" width="644" height="237" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;
  &lt;br /&gt;&lt;img alt="" align="middle" src="http://www.dotnetscraps.com/samples/bullets/036.gif" /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;em&gt;Next time I will post on working with transactional messaging. &lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="http://cid-a8b551889a25b6e6.skydrive.live.com/self.aspx/Public/WCFQ.zip" target="_blank"&gt;Click hear to Download source code here…&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/MkuFh5QVsf4" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/MkuFh5QVsf4/post.aspx</link>
      <author>harim</author>
      <comments>http://www.mukkapati.com/blog/post/Developing-Async-apps-using-WCF-and-MSMQ-Part-1.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=2fd88477-4728-4b38-9b1e-efe9a5a4d54b</guid>
      <pubDate>Tue, 30 Jun 2009 17:38:00 +0100</pubDate>
      <dc:publisher>harim</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=2fd88477-4728-4b38-9b1e-efe9a5a4d54b</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=2fd88477-4728-4b38-9b1e-efe9a5a4d54b</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/Developing-Async-apps-using-WCF-and-MSMQ-Part-1.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=2fd88477-4728-4b38-9b1e-efe9a5a4d54b</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=2fd88477-4728-4b38-9b1e-efe9a5a4d54b</feedburner:origLink></item>
    <item>
      <title>Windows Live Sync : Keep it all in sync!!!</title>
      <description>&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Sync your files between computers so you always have the latest copy.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;Download Live Sync Below : &lt;br /&gt;&lt;strong&gt;For Windows : &lt;/strong&gt;&lt;/div&gt;
&lt;blockquote style="margin-right: 0px" dir="ltr"&gt;
&lt;div&gt;Version: 14.0.8064.0206 &lt;br /&gt;Requires: Microsoft Windows XP SP2 or later, Microsoft Windows 2003 SP2 or later, Windows Server 2008 or Windows Vista (Windows XP Professional x64 Edition is not supported)&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;a href="https://sync.live.com/download/en/WindowsLiveSync.msi"&gt;https://sync.live.com/download/en/WindowsLiveSync.msi&lt;/a&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div&gt;&lt;strong&gt;For Mac :&lt;/strong&gt;&lt;/div&gt;
&lt;blockquote style="margin-right: 0px" dir="ltr"&gt;
&lt;div&gt;Version: 14.0.6067.1212 &lt;br /&gt;Requires: OSX 10.5 or later&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;a href="https://sync.live.com/download/files/WindowsLiveSyncSetup.mpkg.zip"&gt;https://sync.live.com/download/files/WindowsLiveSyncSetup.mpkg.zip&lt;/a&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div dir="ltr"&gt;&lt;strong&gt;Need More information for Sync : &lt;/strong&gt;&lt;/div&gt;
&lt;blockquote style="margin-right: 0px" dir="ltr"&gt;
&lt;div dir="ltr"&gt;&lt;a href="http://help.live.com/Help.aspx?mkt=en-us&amp;amp;project=WL_Sync"&gt;http://help.live.com/Help.aspx?mkt=en-us&amp;amp;project=WL_Sync&lt;/a&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div dir="ltr"&gt;&lt;strong&gt;More info can be found directly at :&lt;/strong&gt;&lt;/div&gt;
&lt;blockquote style="margin-right: 0px" dir="ltr"&gt;
&lt;div dir="ltr"&gt;&lt;a href="https://sync.live.com/"&gt;https://sync.live.com/&lt;/a&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div dir="ltr"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div dir="ltr"&gt;&amp;nbsp;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/MfhRwJ3jdF8" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/MfhRwJ3jdF8/post.aspx</link>
      <author>harim</author>
      <comments>http://www.mukkapati.com/blog/post/Windows-Live-Sync-Keep-it-all-in-sync!!!.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=34066826-036d-4023-903d-1114eeebddcb</guid>
      <pubDate>Fri, 26 Jun 2009 04:45:00 +0100</pubDate>
      <category>Internet Tools</category>
      <category>Tools</category>
      <dc:publisher>harim</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=34066826-036d-4023-903d-1114eeebddcb</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=34066826-036d-4023-903d-1114eeebddcb</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/Windows-Live-Sync-Keep-it-all-in-sync!!!.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=34066826-036d-4023-903d-1114eeebddcb</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=34066826-036d-4023-903d-1114eeebddcb</feedburner:origLink></item>
    <item>
      <title>Problem SSIS Package Scheduling</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;While scheduling the SSIS package some of you already might have seen the following problem.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Unable to cast object of type 'Microsoft.SqlServer.Management.Smo.SimpleObjectKey' to type 'Microsoft.SqlServer.Management.Smo.Agent.JobObjectKey'. (Microsoft.SqlServer.Smo)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The reason for this problem is that you the SP2 patch is not applied properly. Why I said properly here is because that the SQL Server installed first and then installed SP2. Later you might have decided to install SSIS later in the game. SP2 is missing on the SSIS. This can happen any changes that you make to .Net Framework 2.0 (either uninstall or do some changes to it) to SQL server adding or removing features. So, Patch it up when you see the above problem or some thing like&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Unable to cast object of type 'X' to type 'Y'. &lt;/strong&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/u9wNWAubcaU" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/u9wNWAubcaU/post.aspx</link>
      <author>Admin</author>
      <comments>http://www.mukkapati.com/blog/post/Problem-SSIS-Package-Scheduling.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=95eba07a-01ea-4756-b1dd-90960f9173c3</guid>
      <pubDate>Fri, 26 Jun 2009 04:45:00 +0100</pubDate>
      <category>SQL Server</category>
      <category>SSIS</category>
      <category>Database</category>
      <dc:publisher>Admin</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=95eba07a-01ea-4756-b1dd-90960f9173c3</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=95eba07a-01ea-4756-b1dd-90960f9173c3</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/Problem-SSIS-Package-Scheduling.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=95eba07a-01ea-4756-b1dd-90960f9173c3</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=95eba07a-01ea-4756-b1dd-90960f9173c3</feedburner:origLink></item>
    <item>
      <title>Data Mining Concepts</title>
      <description>&lt;p&gt;Data mining is frequently described as &lt;em&gt;"the process of extracting valid, authentic, and actionable information from large databases."&lt;/em&gt; In other words, data mining derives patterns and trends that exist in data. These patterns and trends can be collected together and defined as a mining model. Mining models can be applied to specific business scenarios, such as:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Forecasting sales. &lt;/li&gt;
&lt;li&gt;Targeting mailings toward specific customers. &lt;/li&gt;
&lt;li&gt;Determining which products are likely to be sold together. &lt;/li&gt;
&lt;li&gt;Finding sequences in the order that customers add products to a shopping cart. &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;An important concept is that building a mining model is part of a larger process that includes everything from defining the basic problem that the model will solve, to deploying the model into a working environment. This process can be defined by using the following six basic steps:&lt;/p&gt;
&lt;p&gt;Here is the link to the Microsoft web site for&lt;/p&gt;
&lt;h3&gt;Data mining concepts&lt;/h3&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/llOJxwhUBis" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/llOJxwhUBis/post.aspx</link>
      <author>Admin</author>
      <comments>http://www.mukkapati.com/blog/post/Data-Mining-Concepts.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=e7a76aef-8f9a-4b18-947b-6001589d9966</guid>
      <pubDate>Fri, 26 Jun 2009 04:26:00 +0100</pubDate>
      <dc:publisher>Admin</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=e7a76aef-8f9a-4b18-947b-6001589d9966</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=e7a76aef-8f9a-4b18-947b-6001589d9966</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/Data-Mining-Concepts.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=e7a76aef-8f9a-4b18-947b-6001589d9966</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=e7a76aef-8f9a-4b18-947b-6001589d9966</feedburner:origLink></item>
    <item>
      <title>Time out issues in cube processing SSAS 2005 Options</title>
      <description>&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Right click on Analysis Services in Management Studio &lt;br /&gt;=&amp;gt; Properties. &lt;br /&gt;=&amp;gt; Show Advanced (all) Properties &lt;br /&gt;=&amp;gt; ExternalCommandTimeout 0 &lt;br /&gt;=&amp;gt; ExternalConnectionTimeout 0&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://groups.google.com/group/microsoft.public.sqlserver.olap/browse_thread/thread/129accbde5d781d4/e65c80882186e7b4"&gt;http://groups.google.com/group/microsoft.public.sqlserver.olap/browse_thread/thread/129accbde5d781d4/e65c80882186e7b4 &lt;/a&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/nQCZre6tA-M" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/nQCZre6tA-M/post.aspx</link>
      <author>Admin</author>
      <comments>http://www.mukkapati.com/blog/post/Time-out-issues-in-cube-processing-SSAS-2005-Options.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=19147486-5f3c-46cd-89e3-222a6e2aaf11</guid>
      <pubDate>Fri, 26 Jun 2009 04:25:00 +0100</pubDate>
      <dc:publisher>Admin</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=19147486-5f3c-46cd-89e3-222a6e2aaf11</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=19147486-5f3c-46cd-89e3-222a6e2aaf11</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/Time-out-issues-in-cube-processing-SSAS-2005-Options.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=19147486-5f3c-46cd-89e3-222a6e2aaf11</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=19147486-5f3c-46cd-89e3-222a6e2aaf11</feedburner:origLink></item>
    <item>
      <title>T-SQL Script for Grant(ing) permissions to all tables in a database to a user</title>
      <description>&lt;pre class="brush: sql;"&gt;set nocount on 
declare @object varchar(40) 
declare mycursor scroll cursor 
for 
   select name from sysobjects 
   where type = 'u' 
   order by name 
  
open mycursor 
fetch first from mycursor into @object 

while @@fetch_status &amp;lt;&amp;gt; -1 
begin 
  if @@fetch_status &amp;lt;&amp;gt; -2 
  begin 
     exec('grant SELECT, INSERT, UPDATE, DELETE on '+@object+' to [userid]') 
  end 
  fetch next from mycursor into @object 
end
 
close mycursor 
deallocate mycursor
 
set nocount off&lt;/pre&gt;
&lt;div&gt;&lt;span style="font-family: ; font-size: 10pt"&gt;Recently I was working on a database and Had to GRANT Select, Update, Delete, Insert permissions to one user on all&amp;nbsp; tables in one data base. So, Below script will do the job.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/KBFrRO8aLhk" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/KBFrRO8aLhk/post.aspx</link>
      <author>Admin</author>
      <comments>http://www.mukkapati.com/blog/post/T-SQL-Script-for-Grant(ing)-permissions-to-all-tables-in-a-database-to-a-user.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=2a61a2ee-bf99-4cbc-be27-3bd118e5ceda</guid>
      <pubDate>Fri, 26 Jun 2009 04:22:00 +0100</pubDate>
      <dc:publisher>Admin</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=2a61a2ee-bf99-4cbc-be27-3bd118e5ceda</pingback:target>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=2a61a2ee-bf99-4cbc-be27-3bd118e5ceda</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/T-SQL-Script-for-Grant(ing)-permissions-to-all-tables-in-a-database-to-a-user.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=2a61a2ee-bf99-4cbc-be27-3bd118e5ceda</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=2a61a2ee-bf99-4cbc-be27-3bd118e5ceda</feedburner:origLink></item>
    <item>
      <title>Removing windows service from command line</title>
      <description>&lt;p&gt;Removing a windows service from command line using &amp;ldquo;SC&amp;rdquo; command line utility.&lt;/p&gt;
&lt;p&gt;Here is the syntax and help.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DESCRIPTION:&lt;/strong&gt;&lt;/p&gt;
&lt;div&gt;&lt;span style="color: #10205f"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SC is a command line program used for communicating with the&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="color: #10205f"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NT Service Controller and services.&lt;/span&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;USAGE:&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;pre&gt;sc &amp;lt;server&amp;gt; [command] [service name] &amp;lt;option1&amp;gt; &amp;lt;option2&amp;gt;...&lt;br /&gt;        The option &amp;lt;server&amp;gt; has the form "\\ServerName"&lt;br /&gt;        Further help on commands can be obtained by typing: "sc [command]"&lt;br /&gt;        Commands:&lt;br /&gt;          query-----------Queries the status for a service, or&lt;br /&gt;                          enumerates the status for types of services.&lt;br /&gt;          queryex---------Queries the extended status for a service, or&lt;br /&gt;                          enumerates the status for types of services.&lt;br /&gt;          start-----------Starts a service.&lt;br /&gt;          pause-----------Sends a PAUSE control request to a service.&lt;br /&gt;          interrogate-----Sends an INTERROGATE control request to a service.&lt;br /&gt;          continue--------Sends a CONTINUE control request to a service.&lt;br /&gt;          stop------------Sends a STOP request to a service.&lt;br /&gt;          config----------Changes the configuration of a service (persistant).&lt;br /&gt;          description-----Changes the description of a service.&lt;br /&gt;          failure---------Changes the actions taken by a service upon failure.&lt;br /&gt;          qc--------------Queries the configuration information for a service.&lt;br /&gt;          qdescription----Queries the description for a service.&lt;br /&gt;          qfailure--------Queries the actions taken by a service upon failure.&lt;br /&gt;          delete----------Deletes a service (from the registry).&lt;br /&gt;          create----------Creates a service. (adds it to the registry).&lt;br /&gt;          control---------Sends a control to a service.&lt;br /&gt;          sdshow----------Displays a service's security descriptor.&lt;br /&gt;          sdset-----------Sets a service's security descriptor.&lt;br /&gt;          GetDisplayName--Gets the DisplayName for a service.&lt;br /&gt;          GetKeyName------Gets the ServiceKeyName for a service.&lt;br /&gt;          EnumDepend------Enumerates Service Dependencies.&lt;br /&gt; &lt;br /&gt;        The following commands don't require a service name:&lt;br /&gt;        sc &amp;lt;server&amp;gt; &amp;lt;command&amp;gt; &amp;lt;option&amp;gt;&lt;br /&gt;          boot------------(ok | bad) Indicates whether the last boot should&lt;br /&gt;                          be saved as the last-known-good boot configuration&lt;br /&gt;          Lock------------Locks the Service Database&lt;br /&gt;          QueryLock-------Queries the LockStatus for the SCManager Database&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;div&gt;&lt;strong&gt;EXAMPLE:&lt;/strong&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;span style="color: #10205f"&gt;&lt;a&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;blockquote&gt;
&lt;pre&gt;sc start MyService&lt;br /&gt;The installed services can be found in the registry under &lt;br /&gt;     &lt;a href="file://\\HKEY_LOCAL_MACHNINE\SYSTEM\CurrentControlSet\Services"&gt;\\HKEY_LOCAL_MACHNINE\SYSTEM\CurrentControlSet\Services&lt;/a&gt;&lt;/pre&gt;
&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/zTm6AHcUpy4" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/zTm6AHcUpy4/post.aspx</link>
      <author>Admin</author>
      <comments>http://www.mukkapati.com/blog/post/Removing-windows-service-from-command-line.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=cb688d65-51e8-4f0b-8cce-b86c218fd956</guid>
      <pubDate>Fri, 26 Jun 2009 04:20:00 +0100</pubDate>
      <dc:publisher>Admin</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=cb688d65-51e8-4f0b-8cce-b86c218fd956</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=cb688d65-51e8-4f0b-8cce-b86c218fd956</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/Removing-windows-service-from-command-line.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=cb688d65-51e8-4f0b-8cce-b86c218fd956</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=cb688d65-51e8-4f0b-8cce-b86c218fd956</feedburner:origLink></item>
    <item>
      <title>COM+ application starting and stopping</title>
      <description>&lt;p&gt;&lt;span style="font-family: ; font-size: 10pt"&gt;COM+ application starting and stopping can be done easily using the COM+ Admin dll.&amp;nbsp; It can be done&amp;nbsp;using VB or in a script language like VBS (which you can run using WSH).&amp;nbsp; Here's example code:&lt;/span&gt;&lt;span style="font-family: ; font-size: 10pt"&gt; &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;pre class="brush: vb;"&gt;On Error Resume Next 
    ' if VB add a reference to COM+ 1.0 Admin Type Library. 
    ' if VBS just declare this object without a type 
    Dim oCatalog As COMAdmin.COMAdminCatalog 
    Dim sName As String 
    Set oCatalog = CreateObject("COMAdmin.COMAdminCatalog") 
  
    sName = "the package name goes here"    
    oCatalog.ShutdownApplication sName 
    
    ' to start the app use this syntax 
    'oCatalog.StartApplication sName 
    
    If Err.Number = 0 Then 
        MsgBox sName &amp;amp; " has been shut down.", vbOKOnly + vbInformation 
    Else 
        Const cMsg = "Error 0x#ERR# trying to shut down #APP#. (#DESC#.)" 
        Dim sMsg 
        sMsg = Replace(cMsg, "#ERR#", Hex(Err.Number), 1, 1) 
        sMsg = Replace(sMsg, "#APP#", sName, 1, 1) 
        sMsg = Replace(sMsg, "#DESC#", Err.Description, 1, 1) 
        MsgBox sMsg, vbOKOnly + vbInformation 
        Err.Clear 
    End If 
    Set oCatalog = Nothing &lt;/pre&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:456c43ac-9603-495e-ae6c-34760d314f91" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px"&gt;del.icio.us Tags: &lt;a rel="tag" href="http://del.icio.us/popular/COM%2b"&gt;COM+&lt;/a&gt;,&lt;a rel="tag" href="http://del.icio.us/popular/VB+Script"&gt;VB Script&lt;/a&gt;,&lt;a rel="tag" href="http://del.icio.us/popular/Trouble+Shooting"&gt;Trouble Shooting&lt;/a&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/HariMukkapati/~4/Hve131nLp1I" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/HariMukkapati/~3/Hve131nLp1I/post.aspx</link>
      <author>Admin</author>
      <comments>http://www.mukkapati.com/blog/post/COM2b-application-starting-and-stopping.aspx#comment</comments>
      <guid isPermaLink="false">http://www.mukkapati.com/blog/post.aspx?id=6bed425a-0398-4790-906d-63046b97f6f9</guid>
      <pubDate>Fri, 26 Jun 2009 04:12:00 +0100</pubDate>
      <dc:publisher>Admin</dc:publisher>
      <pingback:server>http://www.mukkapati.com/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.mukkapati.com/blog/post.aspx?id=6bed425a-0398-4790-906d-63046b97f6f9</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.mukkapati.com/blog/trackback.axd?id=6bed425a-0398-4790-906d-63046b97f6f9</trackback:ping>
      <wfw:comment>http://www.mukkapati.com/blog/post/COM2b-application-starting-and-stopping.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.mukkapati.com/blog/syndication.axd?post=6bed425a-0398-4790-906d-63046b97f6f9</wfw:commentRss>
    <feedburner:origLink>http://www.mukkapati.com/blog/post.aspx?id=6bed425a-0398-4790-906d-63046b97f6f9</feedburner:origLink></item>
  </channel>
</rss>

