<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Custom Workflow in Sharepoint</title>
	<atom:link href="http://benreichelt.net/blog/2005/09/13/custom-workflow-in-sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://benreichelt.net/blog/2005/09/13/custom-workflow-in-sharepoint/</link>
	<description></description>
	<lastBuildDate>Tue, 18 Aug 2009 22:20:45 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anonymous</title>
		<link>http://benreichelt.net/blog/2005/09/13/custom-workflow-in-sharepoint/comment-page-1/#comment-441</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 07 Oct 2005 06:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://s194721765.onlinehome.us/blog/2005/09/13/custom-workflow-in-sharepoint/#comment-441</guid>
		<description>Before any document libraries can raise events on the server, WSS must be configured to enable events. The default configuration of a WSS virtual server does not allow events to be raised for document libraries, so you have to explicitly enable this feature before your custom event sink objects will be notified of events. You can do that through the administration Web site, by using the SharePoint command-line administration tool STSADM.EXE, or by using the WSS server-side object model. Enabling event handlers programmatically is simple using code like that shown here:

SPGlobalAdmin globalAdmin = new SPGlobalAdmin();

System.Uri uri = new System.Uri(&quot;http://localhost:8080&quot;);
SPVirtualServer vServer = globalAdmin.OpenVirtualServer(uri);

SPVirtualServerConfig vConfig = vServer.Config;
vConfig.EventHandlersEnabled = true;
vConfig.Properties.Update();

globalAdmin.Close();</description>
		<content:encoded><![CDATA[<p>Before any document libraries can raise events on the server, WSS must be configured to enable events. The default configuration of a WSS virtual server does not allow events to be raised for document libraries, so you have to explicitly enable this feature before your custom event sink objects will be notified of events. You can do that through the administration Web site, by using the SharePoint command-line administration tool STSADM.EXE, or by using the WSS server-side object model. Enabling event handlers programmatically is simple using code like that shown here:</p>
<p>SPGlobalAdmin globalAdmin = new SPGlobalAdmin();</p>
<p>System.Uri uri = new System.Uri(&#8221;http://localhost:8080&#8243;);<br />
SPVirtualServer vServer = globalAdmin.OpenVirtualServer(uri);</p>
<p>SPVirtualServerConfig vConfig = vServer.Config;<br />
vConfig.EventHandlersEnabled = true;<br />
vConfig.Properties.Update();</p>
<p>globalAdmin.Close();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://benreichelt.net/blog/2005/09/13/custom-workflow-in-sharepoint/comment-page-1/#comment-440</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 15 Sep 2005 05:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://s194721765.onlinehome.us/blog/2005/09/13/custom-workflow-in-sharepoint/#comment-440</guid>
		<description>Perhaps not exactly what you&#039;re after, but there is a 3rd party product that can produce custom work flow and document flow in Sharepoint. http://www.sharevis.com</description>
		<content:encoded><![CDATA[<p>Perhaps not exactly what you&#8217;re after, but there is a 3rd party product that can produce custom work flow and document flow in Sharepoint. <a href="http://www.sharevis.com" rel="nofollow">http://www.sharevis.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://benreichelt.net/blog/2005/09/13/custom-workflow-in-sharepoint/comment-page-1/#comment-439</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 13 Sep 2005 10:26:24 +0000</pubDate>
		<guid isPermaLink="false">http://s194721765.onlinehome.us/blog/2005/09/13/custom-workflow-in-sharepoint/#comment-439</guid>
		<description>You&#039;ll be interested in following some news coming out about the next version of SharePoint this week at PDC.  ;)</description>
		<content:encoded><![CDATA[<p>You&#8217;ll be interested in following some news coming out about the next version of SharePoint this week at PDC.  <img src='http://benreichelt.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
