<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for ILOG .NET Visualization Blog</title>
	<link>http://blogs.ilog.com/netvisu</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sun, 06 Jul 2008 05:38:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>Comment on Licensing in .NET explained - Part 2 by Robert Dupuy</title>
		<link>http://blogs.ilog.com/netvisu/2008/05/22/licensing-in-net-explained-part-2/#comment-89</link>
		<dc:creator>Robert Dupuy</dc:creator>
		<pubDate>Mon, 23 Jun 2008 10:23:54 +0000</pubDate>
		<guid>http://blogs.ilog.com/netvisu/2008/05/22/licensing-in-net-explained-part-2/#comment-89</guid>
		<description>Hi,

What code do you need ? The code posted in the article can be used as a base for developping your own licensing mechanism. I can help you if you tell me where do you have a problem in your license provider implementation.

Robert.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>What code do you need ? The code posted in the article can be used as a base for developping your own licensing mechanism. I can help you if you tell me where do you have a problem in your license provider implementation.</p>
<p>Robert.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Licensing in .NET explained - Part 2 by Sajid</title>
		<link>http://blogs.ilog.com/netvisu/2008/05/22/licensing-in-net-explained-part-2/#comment-69</link>
		<dc:creator>Sajid</dc:creator>
		<pubDate>Wed, 18 Jun 2008 09:32:40 +0000</pubDate>
		<guid>http://blogs.ilog.com/netvisu/2008/05/22/licensing-in-net-explained-part-2/#comment-69</guid>
		<description>Hi. I whole code.plz rely soon. i dont know how we implement it</description>
		<content:encoded><![CDATA[<p>Hi. I whole code.plz rely soon. i dont know how we implement it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on REMIX 08 in Paris by Robert Dupuy</title>
		<link>http://blogs.ilog.com/netvisu/2008/04/22/remix-08-in-paris/#comment-55</link>
		<dc:creator>Robert Dupuy</dc:creator>
		<pubDate>Fri, 30 May 2008 12:34:13 +0000</pubDate>
		<guid>http://blogs.ilog.com/netvisu/2008/04/22/remix-08-in-paris/#comment-55</guid>
		<description>You can find several blogs over the web that cover the subject:

http://weblogs.asp.net/jmandia/archive/2008/01/04/silverlight-seo-search-engine-optimisation-optimization.aspx

http://blogs.msdn.com/jhawk/archive/2007/05/23/searching-enabling-silverlight-and-ajax-web-applications.aspx

http://xmldocs.net/seo/

http://www.silverlightseo.net/

Robert.</description>
		<content:encoded><![CDATA[<p>You can find several blogs over the web that cover the subject:</p>
<p><a href="http://weblogs.asp.net/jmandia/archive/2008/01/04/silverlight-seo-search-engine-optimisation-optimization.aspx" rel="nofollow">http://weblogs.asp.net/jmandia/archive/2008/01/04/silverlight-seo-search-engine-optimisation-optimization.aspx</a></p>
<p><a href="http://blogs.msdn.com/jhawk/archive/2007/05/23/searching-enabling-silverlight-and-ajax-web-applications.aspx" rel="nofollow">http://blogs.msdn.com/jhawk/archive/2007/05/23/searching-enabling-silverlight-and-ajax-web-applications.aspx</a></p>
<p><a href="http://xmldocs.net/seo/" rel="nofollow">http://xmldocs.net/seo/</a></p>
<p><a href="http://www.silverlightseo.net/" rel="nofollow">http://www.silverlightseo.net/</a></p>
<p>Robert.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Licensing in .NET explained - Part 1 by Robert Dupuy</title>
		<link>http://blogs.ilog.com/netvisu/2008/05/13/licensing-in-net-explained-part-1/#comment-50</link>
		<dc:creator>Robert Dupuy</dc:creator>
		<pubDate>Thu, 29 May 2008 09:31:41 +0000</pubDate>
		<guid>http://blogs.ilog.com/netvisu/2008/05/13/licensing-in-net-explained-part-1/#comment-50</guid>
		<description>I would simply create a License subclass that would update a counter (in a file, a database, in the application session, ...). The counter should be modified in the constructor and in the Dispose method of the License. When the counter reaches a specific value, you can throw an exception in the License constructor.

Of course, to be able to use your License, you should create the appropriate LicenseProvider. See my second article on this subject for details.

Then, to control the number of users allowed to use your web app, you simply have to set the counter to the right value. You can imagine to set this value directly in the web.config file as a custom property.

Hope this helps</description>
		<content:encoded><![CDATA[<p>I would simply create a License subclass that would update a counter (in a file, a database, in the application session, &#8230;). The counter should be modified in the constructor and in the Dispose method of the License. When the counter reaches a specific value, you can throw an exception in the License constructor.</p>
<p>Of course, to be able to use your License, you should create the appropriate LicenseProvider. See my second article on this subject for details.</p>
<p>Then, to control the number of users allowed to use your web app, you simply have to set the counter to the right value. You can imagine to set this value directly in the web.config file as a custom property.</p>
<p>Hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Licensing in .NET explained - Part 1 by dotnetter</title>
		<link>http://blogs.ilog.com/netvisu/2008/05/13/licensing-in-net-explained-part-1/#comment-47</link>
		<dc:creator>dotnetter</dc:creator>
		<pubDate>Tue, 27 May 2008 11:28:10 +0000</pubDate>
		<guid>http://blogs.ilog.com/netvisu/2008/05/13/licensing-in-net-explained-part-1/#comment-47</guid>
		<description>What do I need to do, If I need to create a tool that can create licenses for any given web application. The license will go along with the web application and at runtime the web app. needs to check if the number of users in its DB is within the limit set in the license. Also how can the number of users be set as part of the license. The license generation tool will take this number as a user input before it generates a license for the web application in question.
Please guide.</description>
		<content:encoded><![CDATA[<p>What do I need to do, If I need to create a tool that can create licenses for any given web application. The license will go along with the web application and at runtime the web app. needs to check if the number of users in its DB is within the limit set in the license. Also how can the number of users be set as part of the license. The license generation tool will take this number as a user input before it generates a license for the web application in question.<br />
Please guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying a Microsoft Project XML file using Diagrammer for .NET, WPF and LinQ (Part 1) by WPF/Silverlight/XAML Web News - 2008/05/23 - Rob Relyea - Xamlified</title>
		<link>http://blogs.ilog.com/netvisu/2008/05/19/displaying-a-microsoft-project-xml-file-using-diagrammer-for-net-wpf-and-linq-part-1/#comment-38</link>
		<dc:creator>WPF/Silverlight/XAML Web News - 2008/05/23 - Rob Relyea - Xamlified</dc:creator>
		<pubDate>Fri, 23 May 2008 20:29:28 +0000</pubDate>
		<guid>http://blogs.ilog.com/netvisu/2008/05/19/displaying-a-microsoft-project-xml-file-using-diagrammer-for-net-wpf-and-linq-part-1/#comment-38</guid>
		<description>[...] ILOG Visualization .NET Blog: Displaying a MS Project XML file using Diagrammer for .NET, WPF, and LinQ Part1 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] ILOG Visualization .NET Blog: Displaying a MS Project XML file using Diagrammer for .NET, WPF, and LinQ Part1 [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on REMIX 08 in Paris by Jason</title>
		<link>http://blogs.ilog.com/netvisu/2008/04/22/remix-08-in-paris/#comment-6</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 14 May 2008 18:28:11 +0000</pubDate>
		<guid>http://blogs.ilog.com/netvisu/2008/04/22/remix-08-in-paris/#comment-6</guid>
		<description>Nice recap Robert.  To your last point about indexing pages for Silverlight.  I'm a little skeptical of creating duplicate content due to all the pagerank, cloaking, and other issues that can happen.  Do you know of a detailed explanation/strategy/implementation plan that Microsoft might have for this?</description>
		<content:encoded><![CDATA[<p>Nice recap Robert.  To your last point about indexing pages for Silverlight.  I&#8217;m a little skeptical of creating duplicate content due to all the pagerank, cloaking, and other issues that can happen.  Do you know of a detailed explanation/strategy/implementation plan that Microsoft might have for this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
