<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx</link><description>As a by-product of a project I'm working on, I've got a working version of BlogEngine.NET on SSDS. You can download the provider and other related components from LitwareHR's web site releases section here . In the package you will find: The SSDS based</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#8592615</link><pubDate>Thu, 12 Jun 2008 07:36:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8592615</guid><dc:creator>Clemens</dc:creator><description>&lt;p&gt;This is great... it will save some time to. &lt;/p&gt;
&lt;p&gt;Yesterday got my beta account for SSDS and the first thing I started with, is porting my blog based on blogengine.net to use SSDS… thanks. For sure feedback will follow ;-)&lt;/p&gt;
</description></item><item><title>نرم افزار آموزش مجازی</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#8592658</link><pubDate>Thu, 12 Jun 2008 08:00:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8592658</guid><dc:creator>نرم افزار آموزش مجازی</dc:creator><description>&lt;p&gt;i think that the blogengineis finding its position on the blog engines and the good thing is that it is using new technologies and i think that with fans it will be developed rapidly.&lt;/p&gt;
</description></item><item><title>BlogEngine.NET en mode S+S avec SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#8610176</link><pubDate>Tue, 17 Jun 2008 11:57:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8610176</guid><dc:creator>Christophe Lauer, Blog Edition</dc:creator><description>&lt;p&gt;Allez, avouez, vous n'avez rien pig&amp;amp;#233; au titre de ce billet, si ? Alors je vous le refais en clair&lt;/p&gt;
</description></item><item><title>Le moteur de blogs en .Net, BlogEngine, devient S+S !</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#8616032</link><pubDate>Wed, 18 Jun 2008 14:54:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8616032</guid><dc:creator>Web Hosting, French Way - by Laurent Bonnet [MS France]</dc:creator><description>&lt;p&gt;Ce moteur, disponible ici en open source sur le site Codeplex , peut &amp;#234;tre configur&amp;#233; pour tirer avantage&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#8863760</link><pubDate>Thu, 14 Aug 2008 06:18:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8863760</guid><dc:creator>vontlin</dc:creator><description>&lt;p&gt;I have been learning SSDS and trying to use your code blogengine ssds source code to build my application.&lt;/p&gt;
&lt;p&gt;I spent last 2 days.. couldn't find a reason...&lt;/p&gt;
&lt;p&gt;I am running into a problem, when i compile and run the application, the code fails here:&lt;/p&gt;
&lt;p&gt;ISitkaSoapService proxy = factory.Build(&amp;quot;SitkaProxy&amp;quot;);&lt;/p&gt;
&lt;p&gt;--&amp;gt; calls the function:&lt;/p&gt;
&lt;p&gt; public TTypeToBuild Build(string settingsKey)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;string typeName = System.Configuration.ConfigurationSettings.AppSettings[settingsKey];&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TTypeToBuild typeToBuild;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (string.IsNullOrEmpty(typeName))&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return new TDefaultType();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;typeToBuild = Activator.CreateInstance(Type.GetType(typeName)) as TTypeToBuild;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return typeToBuild;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt;And I get TargetInvocationException at :&lt;/p&gt;
&lt;p&gt;typeToBuild = Activator.CreateInstance(Type.GetType(typeName)) as TTypeToBuild;&lt;/p&gt;
&lt;p&gt;the innerexception shows:&lt;/p&gt;
&lt;p&gt;{&amp;quot;Could not find default endpoint element that references contract 'SitkaClient.ISitkaSoapService' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.&amp;quot;}&lt;/p&gt;
&lt;p&gt;i checked all the code/files.. am not sure what i am missing.. any help.. appreciate it..&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#8892693</link><pubDate>Mon, 25 Aug 2008 00:44:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8892693</guid><dc:creator>Eugenio Pace</dc:creator><description>&lt;p&gt;This looks like a misconfiguration. Check web.config. &lt;/p&gt;
</description></item><item><title>Microsoft SQL Server Data Services (SSDS): First Contact</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#8977226</link><pubDate>Sun, 05 Oct 2008 22:31:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8977226</guid><dc:creator>Colby Africa</dc:creator><description>&lt;p&gt;I have been reading about cloud computing quite a bit.&amp;amp;#160; I found that Microsoft is doing something&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9464542</link><pubDate>Sun, 08 Mar 2009 02:02:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9464542</guid><dc:creator>packboom</dc:creator><description>&lt;p&gt;I am very much interested on BlogEngine.NET using SSDS. &amp;nbsp;I've downloaded your code but I can't see source in handling NewMediaObject. &amp;nbsp;Where to save blob...on SSDS or Windows Azure blobs? &amp;nbsp;Thanks!&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9467612</link><pubDate>Mon, 09 Mar 2009 13:26:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9467612</guid><dc:creator>packboom</dc:creator><description>&lt;p&gt;Hi, it's me again. &amp;nbsp;I keep getting this error during provisioning on SSDS:&lt;/p&gt;
&lt;p&gt;The remote server returned an unexpected response: (400) The request contained an invalid Content-Type header value. &amp;nbsp;The expected value is, &amp;quot;application/x-ssds+xml&amp;quot;..&lt;/p&gt;
&lt;p&gt;It happened at the end of this code on ContainerManager.cs:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ISitkaSoapService proxy = new SitkaProxyFactory(tenantManager).BuildProxy(); &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Scope scope = new Scope();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;scope.AuthorityId = tenantManager.GetAuthorityId( tenantId );&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;scope.ContainerId = tenantManager.GetContainerId( tenantId );&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;containerEntity = proxy.Get(scope);&lt;/p&gt;
&lt;p&gt;Please tell me on how to get with this. &amp;nbsp;Thanks!&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9895122</link><pubDate>Mon, 14 Sep 2009 23:27:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9895122</guid><dc:creator>Oes Tsetnoc</dc:creator><description>&lt;p&gt;I think you have some code that need to replace to avoid mis configuration. &lt;/p&gt;
&lt;p&gt;Oes Tsetnoc&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9896609</link><pubDate>Fri, 18 Sep 2009 04:29:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9896609</guid><dc:creator>oes tsetnoc</dc:creator><description>&lt;p&gt;yes..i think their is some &amp;nbsp;misconfig in your code and you should better fixed it..you can ask this forum to ask for some codes..they are expert.. ( &lt;a rel="nofollow" target="_new" href="http://www.daniweb.com"&gt;http://www.daniweb.com&lt;/a&gt; )..for sure they can help you..&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9896617</link><pubDate>Fri, 18 Sep 2009 04:54:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9896617</guid><dc:creator>Eugenio Pace</dc:creator><description>&lt;p&gt;This version of SDS is not longer available. So this sample is not applicable any more.&lt;/p&gt;
&lt;p&gt;SDS is now SQL Azure which is compatible with SQL Server. Most probably BlogEngine default provider would &amp;quot;just work&amp;quot;.&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9898760</link><pubDate>Thu, 24 Sep 2009 05:25:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9898760</guid><dc:creator>oes tsetnoc</dc:creator><description>&lt;p&gt;the code is perfect and i think it is effective&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9899779</link><pubDate>Sat, 26 Sep 2009 05:17:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9899779</guid><dc:creator>Ed Hardy</dc:creator><description>&lt;p&gt;Thank you very much for the nice information. It is very useful.&lt;/p&gt;
&lt;p&gt;Ed Hardy&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9900129</link><pubDate>Mon, 28 Sep 2009 07:56:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9900129</guid><dc:creator>oes tsetnoc</dc:creator><description>&lt;p&gt;great i use this code and i think it is perfect.&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9904156</link><pubDate>Wed, 07 Oct 2009 10:17:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9904156</guid><dc:creator>Noah Group</dc:creator><description>&lt;p&gt;wow..great..this is very useful for some beginners like me.&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9905295</link><pubDate>Fri, 09 Oct 2009 08:50:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9905295</guid><dc:creator>Oes Tsetnoc blog</dc:creator><description>&lt;p&gt;I am still trying to figure out this code and about to study this. I still need time to see the real purpose of this code, maybe because its quite new to me.&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9912398</link><pubDate>Sat, 24 Oct 2009 07:06:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9912398</guid><dc:creator>Noah Group</dc:creator><description>&lt;p&gt;Thanks for sharing this information. . &lt;/p&gt;
&lt;p&gt;Noah Group&lt;/p&gt;
</description></item><item><title>re: Another SSDS sample: BlogEngine.NET on SSDS</title><link>http://blogs.msdn.com/eugeniop/archive/2008/06/11/another-ssds-sample-blogengine-net-on-ssds.aspx#9919809</link><pubDate>Mon, 09 Nov 2009 21:55:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9919809</guid><dc:creator>seolurus@gmail.com</dc:creator><description>&lt;p&gt;Actually your blog looks good...but you must set up it SQL Server DBA.&lt;/p&gt;
</description></item></channel></rss>