<?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/"
	>

<channel>
	<title>Dev Team Assemble &#187; services</title>
	<atom:link href="http://www.calvinirwin.net/tag/services/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.calvinirwin.net</link>
	<description>Evil beware!</description>
	<lastBuildDate>Mon, 06 Feb 2012 18:42:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing and Debugging a windows Service</title>
		<link>http://www.calvinirwin.net/2011/05/04/installing-and-debugging-a-windows-service/</link>
		<comments>http://www.calvinirwin.net/2011/05/04/installing-and-debugging-a-windows-service/#comments</comments>
		<pubDate>Wed, 04 May 2011 13:04:42 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[.Net Framework]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=275</guid>
		<description><![CDATA[Here is some useful information that I always seem to forget when developing windows services.

To install/uninstall manually, which i find helpful to do from the bin folder of your project use the following commands:

INSTALL: %windir%\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe [the name of the executable]
UNINSTALL: %windir%\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe -u [the name of the executable]


To Debug a windows service add the following code [...]]]></description>
			<content:encoded><![CDATA[<p>Here is some useful information that I always seem to forget when developing windows services.</p>
<ul>
<li>To install/uninstall manually, which i find helpful to do from the bin folder of your project use the following commands:
<ul>
<li>INSTALL: %windir%\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe [the name of the executable]</li>
<li>UNINSTALL: %windir%\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe -u [the name of the executable]</li>
</ul>
</li>
<li>To Debug a windows service add the following code to your Main method<br />
<code><br />
static void Main(string[] args)<br />
{<br />
#if DEBUG<br />
System.Diagnostics.Debugger.Break();<br />
#endif</code></p>
<p><code> </code></p>
<p style="padding-left: 30px;"><code> ServiceBase.Run(new Service());</code></p>
<p style="padding-left: 30px;"><code>}<br />
</code>
</li>
<li>To create an installation package for a service: ....I will come back to that - no time to put it together today <img src='http://www.calvinirwin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Development' rel='tag' target='_self'>Development</a>, <a class='technorati-link' href='http://technorati.com/tag/services' rel='tag' target='_self'>services</a>, <a class='technorati-link' href='http://technorati.com/tag/visual+studio' rel='tag' target='_self'>visual studio</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_self'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2011/05/04/installing-and-debugging-a-windows-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Variations Not Deploying</title>
		<link>http://www.calvinirwin.net/2009/08/18/sharepoint-variations-not-deploying/</link>
		<comments>http://www.calvinirwin.net/2009/08/18/sharepoint-variations-not-deploying/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 22:19:23 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=160</guid>
		<description><![CDATA[While working on my sharepoint development machine today I was mucking about with variations and doing a proof of concept.  Now I know they worked before but for some reason when I created a new page in the source site they were not being propagated through to the variation label sites.  In Centeral Admin under [...]]]></description>
			<content:encoded><![CDATA[<p>While working on my sharepoint development machine today I was mucking about with variations and doing a proof of concept.  Now I know they worked before but for some reason when I created a new page in the source site they were not being propagated through to the variation label sites.  In Centeral Admin under the Timer Status I found that the Variations Propagate Page Job Definition and the Variations Propagate Site Job Definition were both stuck at 0% and Initialized, see below:</p>
<p><img class="alignnone size-full wp-image-161" title="variations" src="http://www.calvinirwin.net/wp-content/uploads/2009/08/variations.gif" alt="variations" width="642" height="59" /></p>
<p>Seeing this, I now knew that the Timer service was not creating my variation pages and sites so a quick check under the windows services control panel applet  revealed that the Windows SharePoint Services Timer Service had been shut off.  Turning this back fixed my problem.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Configuration' rel='tag' target='_self'>Configuration</a>, <a class='technorati-link' href='http://technorati.com/tag/services' rel='tag' target='_self'>services</a>, <a class='technorati-link' href='http://technorati.com/tag/SharePoint' rel='tag' target='_self'>SharePoint</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_self'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/08/18/sharepoint-variations-not-deploying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

