<?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: &quot;MService&quot;: Part II</title>
	<atom:link href="http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/</link>
	<description>tanto nomini nullum par elogium...</description>
	<lastBuildDate>Wed, 08 Sep 2010 20:22:57 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: &#8220;MService&#8221;: Part III at Douglas Purdy</title>
		<link>http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/comment-page-1/#comment-1403</link>
		<dc:creator>&#8220;MService&#8221;: Part III at Douglas Purdy</dc:creator>
		<pubDate>Mon, 30 Mar 2009 02:28:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/#comment-1403</guid>
		<description>[...] Prereading: Part I, Part II [...]</description>
		<content:encoded><![CDATA[<p>[...] Prereading: Part I, Part II [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: douglasp</title>
		<link>http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/comment-page-1/#comment-1299</link>
		<dc:creator>douglasp</dc:creator>
		<pubDate>Wed, 25 Mar 2009 17:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/#comment-1299</guid>
		<description>Ideally, both.

The thing we didn&#039;t get to show was the &lt;strong&gt;invoke&lt;/strong&gt; syntax for MService.  You can invoke whatever logic you want from an M function.</description>
		<content:encoded><![CDATA[<p>Ideally, both.</p>
<p>The thing we didn&#8217;t get to show was the <strong>invoke</strong> syntax for MService.  You can invoke whatever logic you want from an M function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/comment-page-1/#comment-1297</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Wed, 25 Mar 2009 15:21:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/#comment-1297</guid>
		<description>This is very nice! After reading your post and seeing your MIX video I still have some question. What is the goal you have with MService? 

Creating (modelling) simple RESTful services or creating full WCF services with business logic? If it is the last, where do I put those business logic?</description>
		<content:encoded><![CDATA[<p>This is very nice! After reading your post and seeing your MIX video I still have some question. What is the goal you have with MService? </p>
<p>Creating (modelling) simple RESTful services or creating full WCF services with business logic? If it is the last, where do I put those business logic?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davidacoder</title>
		<link>http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/comment-page-1/#comment-1235</link>
		<dc:creator>davidacoder</dc:creator>
		<pubDate>Mon, 23 Mar 2009 13:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/#comment-1235</guid>
		<description>Thanks, this helps a lot and I think a top level post would be terrific. I have quite a lot of questions/comments on that scenario, but I&#039;ll keep them for the top level posting. I think a key issue for me that I would like to see some guidance on is the relationship to Entities Framework, with the info you just provided it seems to me that Oslo might be a complete superset, and one could just drop entities entirely.</description>
		<content:encoded><![CDATA[<p>Thanks, this helps a lot and I think a top level post would be terrific. I have quite a lot of questions/comments on that scenario, but I&#8217;ll keep them for the top level posting. I think a key issue for me that I would like to see some guidance on is the relationship to Entities Framework, with the info you just provided it seems to me that Oslo might be a complete superset, and one could just drop entities entirely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: douglasp</title>
		<link>http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/comment-page-1/#comment-1188</link>
		<dc:creator>douglasp</dc:creator>
		<pubDate>Sun, 22 Mar 2009 01:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/#comment-1188</guid>
		<description>@davidacoder

I think I will need to write a top level post about this, but here is the nutshell.

A repository is just a database that has domain models in it.  Full stop.  Those models can apply to any domain: applications, services, web sites (things we are modeling) as well as purchase order, employees, etc (things an enterprise customer would model).

Notice that above a said &quot;A repository&quot;, not &quot;The repository&quot;.  There is no &quot;one repository&quot; in our architecture.  There lots and lots and lots of them.  Just like there are lots and lots of databases.

In terms of metadata, every repository has a collection of tables in it that we call the &quot;catalog&quot;.  The catalog is composed of a number of things, but the most important is the M4M models.  These models are populated when ever you build a domain model with &quot;M&quot; and load it into the repository (nee database).

This is the information that we use to &quot;drive&quot; our tools (the M compiler, Quadrant) and runtimes (things like MService).

Now we are also providing a number of patterns, tools, etc. that enable us and third parties to configure and use a repository for specific purposes:  storing metadata, storing operational data, etc.

In the world of SOA, a repository normally stores metadata about services, etc.  That is ABSOLUTELY a use case we are going after, but imagine using that same functionality for your operational databases and application domain, that is also ABSOLUTELY a user case we are going after.</description>
		<content:encoded><![CDATA[<p>@davidacoder</p>
<p>I think I will need to write a top level post about this, but here is the nutshell.</p>
<p>A repository is just a database that has domain models in it.  Full stop.  Those models can apply to any domain: applications, services, web sites (things we are modeling) as well as purchase order, employees, etc (things an enterprise customer would model).</p>
<p>Notice that above a said &#8220;A repository&#8221;, not &#8220;The repository&#8221;.  There is no &#8220;one repository&#8221; in our architecture.  There lots and lots and lots of them.  Just like there are lots and lots of databases.</p>
<p>In terms of metadata, every repository has a collection of tables in it that we call the &#8220;catalog&#8221;.  The catalog is composed of a number of things, but the most important is the M4M models.  These models are populated when ever you build a domain model with &#8220;M&#8221; and load it into the repository (nee database).</p>
<p>This is the information that we use to &#8220;drive&#8221; our tools (the M compiler, Quadrant) and runtimes (things like MService).</p>
<p>Now we are also providing a number of patterns, tools, etc. that enable us and third parties to configure and use a repository for specific purposes:  storing metadata, storing operational data, etc.</p>
<p>In the world of SOA, a repository normally stores metadata about services, etc.  That is ABSOLUTELY a use case we are going after, but imagine using that same functionality for your operational databases and application domain, that is also ABSOLUTELY a user case we are going after.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davidacoder</title>
		<link>http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/comment-page-1/#comment-1172</link>
		<dc:creator>davidacoder</dc:creator>
		<pubDate>Sat, 21 Mar 2009 13:15:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglaspurdy.com/2009/03/21/mservice-part-ii/#comment-1172</guid>
		<description>This is the number one thing I don&#039;t understand right now about Oslo. The database you are talking about there is the repository, right? So, are we going to save all our data in the repository from now on? In all the exmaples I have seen so fare the repository in the end was not only used for meta data type stuff, but for the actual user data as well.

Or, to say it differently, are you planning that Oslo will replace the existing practise of using ADO.Net style data access? Is this the new attempt of WinFS, entity, all new DB stack? Just mightily confused about that.</description>
		<content:encoded><![CDATA[<p>This is the number one thing I don&#8217;t understand right now about Oslo. The database you are talking about there is the repository, right? So, are we going to save all our data in the repository from now on? In all the exmaples I have seen so fare the repository in the end was not only used for meta data type stuff, but for the actual user data as well.</p>
<p>Or, to say it differently, are you planning that Oslo will replace the existing practise of using ADO.Net style data access? Is this the new attempt of WinFS, entity, all new DB stack? Just mightily confused about that.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
