<?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 for davidpoll.com</title>
	<atom:link href="http://www.davidpoll.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidpoll.com</link>
	<description>Silverlight, RIA development, and other goofy geeky goodness.</description>
	<lastBuildDate>Mon, 30 Aug 2010 22:58:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Opening up Silverlight 4 Navigation: Authentication/Authorization in an INavigationContentLoader by Michael</title>
		<link>http://www.davidpoll.com/2010/01/01/opening-up-silverlight-4-navigation-authenticationauthorization-in-an-inavigationcontentloader/comment-page-1/#comment-7152</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Mon, 30 Aug 2010 22:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/01/01/opening-up-silverlight-4-navigation-authenticationauthorization-in-an-inavigationcontentloader/#comment-7152</guid>
		<description>Hi David,
I have been using your SLaB content loader to load on demand pages. It works great. Thanks. But I turned my forms authentication back on and now the load on demand page&#039;s web services don&#039;t work. The pages still load okay but the web service calls fail. The load on demand pages exist in sub folders on the web server and each page has its own web config and web service. Any ideas?
Thanks,
Michael</description>
		<content:encoded><![CDATA[<p>Hi David,<br />
I have been using your SLaB content loader to load on demand pages. It works great. Thanks. But I turned my forms authentication back on and now the load on demand page&#8217;s web services don&#8217;t work. The pages still load okay but the web service calls fail. The load on demand pages exist in sub folders on the web server and each page has its own web config and web service. Any ideas?<br />
Thanks,<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Opening up Silverlight 4 Navigation: Introduction to INavigationContentLoader by sagar</title>
		<link>http://www.davidpoll.com/2009/11/30/opening-up-silverlight-4-navigation-introduction-to-inavigationcontentloader/comment-page-1/#comment-7150</link>
		<dc:creator>sagar</dc:creator>
		<pubDate>Mon, 30 Aug 2010 03:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=195#comment-7150</guid>
		<description>Thanks a lot David for your quick reply. We&#039;ll go through you suggestion and links provided and let you know):</description>
		<content:encoded><![CDATA[<p>Thanks a lot David for your quick reply. We&#8217;ll go through you suggestion and links provided and let you know):</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Opening up Silverlight 4 Navigation: Introduction to INavigationContentLoader by david.poll</title>
		<link>http://www.davidpoll.com/2009/11/30/opening-up-silverlight-4-navigation-introduction-to-inavigationcontentloader/comment-page-1/#comment-7149</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Sun, 29 Aug 2010 20:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=195#comment-7149</guid>
		<description>Sagar,

The best suggestion I can give you is to look at my sample here: http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/

The sitemap UI I present is TreeView based and uses a declarative sitemap, limiting visibility of nodes in the sitemap based upon authorization.  It&#039;s all extensible and doesn&#039;t have to be defined in XAML -- this is just the experience I chose for the 90% case.  If you run into something that&#039;s broken with it, please do let me know :)

As for your second issue, it really depends on what their content is.  If users are using the RichTextBox control to generate content, for example, you might store the XAML they generate directly into a database (just as a string) and use XamlReader.Load() on the content to pull it back out.  I actually have a richer example of this here: http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/

If the RichTextBox only has plain inlines (e.g. Hyperlinks, Runs, Bolds, Italics, etc.) and nothing richer (e.g. Images, inline UI, etc.), then you can just use the .Xaml property of the RichTextBox to get the XAML back out.  Otherwise, the UiXamlSerializer in my post above may be able to help.

I hope that helps!
-David</description>
		<content:encoded><![CDATA[<p>Sagar,</p>
<p>The best suggestion I can give you is to look at my sample here: <a href="http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/" rel="nofollow">http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/</a></p>
<p>The sitemap UI I present is TreeView based and uses a declarative sitemap, limiting visibility of nodes in the sitemap based upon authorization.  It&#8217;s all extensible and doesn&#8217;t have to be defined in XAML &#8212; this is just the experience I chose for the 90% case.  If you run into something that&#8217;s broken with it, please do let me know <img src='http://www.davidpoll.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>As for your second issue, it really depends on what their content is.  If users are using the RichTextBox control to generate content, for example, you might store the XAML they generate directly into a database (just as a string) and use XamlReader.Load() on the content to pull it back out.  I actually have a richer example of this here: <a href="http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/" rel="nofollow">http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/</a></p>
<p>If the RichTextBox only has plain inlines (e.g. Hyperlinks, Runs, Bolds, Italics, etc.) and nothing richer (e.g. Images, inline UI, etc.), then you can just use the .Xaml property of the RichTextBox to get the XAML back out.  Otherwise, the UiXamlSerializer in my post above may be able to help.</p>
<p>I hope that helps!<br />
-David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Common Navigation UI and Authorization-driven Sitemaps by david.poll</title>
		<link>http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/comment-page-1/#comment-7148</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Sun, 29 Aug 2010 20:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/#comment-7148</guid>
		<description>Wolf,

I&#039;m glad you&#039;re making good use of SLaB.

As for rebuilding, I&#039;ve seen this error before (it happens to me occasionally too).  I&#039;ve found that usually closing the TestPrinter.xaml file resolves it.  I&#039;m still not sure why it&#039;s happening, since all of the dependencies are indeed there.

The CreateExtmap task is there to generate the extmap files for all of my assemblies.  It&#039;s not an after-build event so that I can easily reuse it without being fully dependent on file paths, etc.  It was just the solution I ultimately chose :).  You can remove the task and things should still build correctly, although I&#039;m not sure why you want to get rid of them.

Anyway, I hope that helps!

-David</description>
		<content:encoded><![CDATA[<p>Wolf,</p>
<p>I&#8217;m glad you&#8217;re making good use of SLaB.</p>
<p>As for rebuilding, I&#8217;ve seen this error before (it happens to me occasionally too).  I&#8217;ve found that usually closing the TestPrinter.xaml file resolves it.  I&#8217;m still not sure why it&#8217;s happening, since all of the dependencies are indeed there.</p>
<p>The CreateExtmap task is there to generate the extmap files for all of my assemblies.  It&#8217;s not an after-build event so that I can easily reuse it without being fully dependent on file paths, etc.  It was just the solution I ultimately chose <img src='http://www.davidpoll.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  You can remove the task and things should still build correctly, although I&#8217;m not sure why you want to get rid of them.</p>
<p>Anyway, I hope that helps!</p>
<p>-David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Opening up Silverlight 4 Navigation: Introduction to INavigationContentLoader by sagar</title>
		<link>http://www.davidpoll.com/2009/11/30/opening-up-silverlight-4-navigation-introduction-to-inavigationcontentloader/comment-page-1/#comment-7147</link>
		<dc:creator>sagar</dc:creator>
		<pubDate>Sun, 29 Aug 2010 20:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=195#comment-7147</guid>
		<description>Hi,

We are planning to develop a community site using silverlight4. We have two issues one related to SL navigation and another general concept. We need ur suggestion.

Issue 1#: We need to generate the menu and submenu at run time depending on user role. User role name and pages(URL) they can authorize to access are being defined in database( we have separate interface for that). On login we need to read the database and generate menu/submenu according to role of the user. What is best option to do this in SL.

Issue 2#: Second issue is general architectural concept. What is best way to store article submitted by user while developing a community site. 

Please share your knowledge and useful link to solve our problem and help us to develop a robust Sl application):

Thanks
Sagar</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>We are planning to develop a community site using silverlight4. We have two issues one related to SL navigation and another general concept. We need ur suggestion.</p>
<p>Issue 1#: We need to generate the menu and submenu at run time depending on user role. User role name and pages(URL) they can authorize to access are being defined in database( we have separate interface for that). On login we need to read the database and generate menu/submenu according to role of the user. What is best option to do this in SL.</p>
<p>Issue 2#: Second issue is general architectural concept. What is best way to store article submitted by user while developing a community site. </p>
<p>Please share your knowledge and useful link to solve our problem and help us to develop a robust Sl application):</p>
<p>Thanks<br />
Sagar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Common Navigation UI and Authorization-driven Sitemaps by Wolf</title>
		<link>http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/comment-page-1/#comment-7146</link>
		<dc:creator>Wolf</dc:creator>
		<pubDate>Thu, 26 Aug 2010 18:23:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/#comment-7146</guid>
		<description>Hi David,
 Really appreciate you blog &amp; especially SL&amp;B v.0.9.  I tried to rebuild your SLaB solution and had no problems, however, when I delete the extmap.xml files (clean doesn&#039;t remove these) I am getting errors during the rebuild.  After a few cycles of rebuilds the errors clear up.  To duplicate I delete the .extmap.xml file in SLaB\Source\SLaB.Navigation.ContentLoaders\Bin\Debug then rebuild and I get:
Error	1	The type or namespace name &#039;CollectionPrinter&#039; could not be found (are you missing a using directive or an assembly reference?)	C:\Users\Wolf\Documents\Visual Studio 2010\Projects\Samples\Navigation\SLaB\Source\ScratchPrintingProject\obj\Debug\TestPrinter.g.i.cs	36	40	ScratchPrintingProject

I looked at the project file and the only cause I can see is related to the CreateMapExt &quot;using task&quot;.  I am not sure what this actually does, can you please explain?  Also is there a reason why this is a using task versus a &#039;After Build&#039; event?

Thanks,
Wolf</description>
		<content:encoded><![CDATA[<p>Hi David,<br />
 Really appreciate you blog &amp; especially SL&amp;B v.0.9.  I tried to rebuild your SLaB solution and had no problems, however, when I delete the extmap.xml files (clean doesn&#8217;t remove these) I am getting errors during the rebuild.  After a few cycles of rebuilds the errors clear up.  To duplicate I delete the .extmap.xml file in SLaB\Source\SLaB.Navigation.ContentLoaders\Bin\Debug then rebuild and I get:<br />
Error	1	The type or namespace name &#8216;CollectionPrinter&#8217; could not be found (are you missing a using directive or an assembly reference?)	C:\Users\Wolf\Documents\Visual Studio 2010\Projects\Samples\Navigation\SLaB\Source\ScratchPrintingProject\obj\Debug\TestPrinter.g.i.cs	36	40	ScratchPrintingProject</p>
<p>I looked at the project file and the only cause I can see is related to the CreateMapExt &#8220;using task&#8221;.  I am not sure what this actually does, can you please explain?  Also is there a reason why this is a using task versus a &#8216;After Build&#8217; event?</p>
<p>Thanks,<br />
Wolf</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making printing easier in Silverlight 4 by Fama</title>
		<link>http://www.davidpoll.com/2010/04/16/making-printing-easier-in-silverlight-4/comment-page-1/#comment-7145</link>
		<dc:creator>Fama</dc:creator>
		<pubDate>Wed, 25 Aug 2010 18:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/04/16/making-printing-easier-in-silverlight-4/#comment-7145</guid>
		<description>Please, if you are not too busy I would really appreciate some further information regarding grouping. I would really like to use your method of printing a document, but I can&#039;t figure out how to properly group the items and still have the printer create multiple pages when needed. It&#039;s as if it doesn&#039;t know that it has reached the bottom of the page.</description>
		<content:encoded><![CDATA[<p>Please, if you are not too busy I would really appreciate some further information regarding grouping. I would really like to use your method of printing a document, but I can&#8217;t figure out how to properly group the items and still have the printer create multiple pages when needed. It&#8217;s as if it doesn&#8217;t know that it has reached the bottom of the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by Don</title>
		<link>http://www.davidpoll.com/about/comment-page-1/#comment-7144</link>
		<dc:creator>Don</dc:creator>
		<pubDate>Wed, 25 Aug 2010 17:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/msftblog/?page_id=2#comment-7144</guid>
		<description>I think your contact page needs a message... if the message was sent successful... I was not prompted with any success or failure... so you might get a couple emails from me =)</description>
		<content:encoded><![CDATA[<p>I think your contact page needs a message&#8230; if the message was sent successful&#8230; I was not prompted with any success or failure&#8230; so you might get a couple emails from me =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on To XAML, with love (an experiment with XAML Serialization in Silverlight) by Phil Hung</title>
		<link>http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/comment-page-1/#comment-7124</link>
		<dc:creator>Phil Hung</dc:creator>
		<pubDate>Mon, 23 Aug 2010 16:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/#comment-7124</guid>
		<description>I am also looking for this kind of SL application.

1. graphical drawing (pbrush like UI)
2. save xaml to database
3. load xaml to SL application from database</description>
		<content:encoded><![CDATA[<p>I am also looking for this kind of SL application.</p>
<p>1. graphical drawing (pbrush like UI)<br />
2. save xaml to database<br />
3. load xaml to SL application from database</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on To XAML, with love (an experiment with XAML Serialization in Silverlight) by KerLaeda</title>
		<link>http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/comment-page-1/#comment-7110</link>
		<dc:creator>KerLaeda</dc:creator>
		<pubDate>Thu, 19 Aug 2010 23:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/#comment-7110</guid>
		<description>P.S. I&#039;ve found that this strange behavior occurs because text in TextBox.Text property is formated and looks pretty. But correct me if I&#039;m wrong, this shouldn&#039;t happen?</description>
		<content:encoded><![CDATA[<p>P.S. I&#8217;ve found that this strange behavior occurs because text in TextBox.Text property is formated and looks pretty. But correct me if I&#8217;m wrong, this shouldn&#8217;t happen?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
