<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xml:lang="en" xml:base="http://iansrobinson.com/wp-atom.php">
	<title type="text">iansrobinson.com</title>
	<subtitle type="text">Ian Robinson's Blog</subtitle>

	<updated>2010-02-13T11:33:21Z</updated>
	<generator uri="http://wordpress.org/" version="2.8">WordPress</generator>

	<link rel="alternate" type="text/html" href="http://iansrobinson.com" />
	<id>http://iansrobinson.com/feed/atom/</id>
	

			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/iansrobinson" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="iansrobinson" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">iansrobinson</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[London Geek Night]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2010/02/12/london-geek-night/" />
		<id>http://iansrobinson.com/?p=192</id>
		<updated>2010-02-13T11:33:21Z</updated>
		<published>2010-02-12T16:25:41Z</published>
		<category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="REST" />		<summary type="html"><![CDATA[Updated The video of Thursday&#8217;s London Geek Night is now online. Thanks to Ikenna Okpala and Skills Matter for recording the event.

Thank you to everyone who came along to the London Geek Night last night. There were many good questions and comments throughout the evening. I didn&#8217;t respond to all of them satisfactorily at the [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2010/02/12/london-geek-night/"><![CDATA[<p><b>Updated</b> The video of Thursday&#8217;s London Geek Night is now <a href="http://skillsmatter.com/podcast/ajax-ria/hydra-and-hypermedia" title="Hydras and Hypermedia" target="_blank">online</a>. Thanks to <a href="http://ikennaokpala.wordpress.com/" title="Ikenna Okpala's blog" target="_blank">Ikenna Okpala</a> and <a href="http://skillsmatter.com/" title="Skills Matter" target="_blank">Skills Matter</a> for recording the event.</p>

<p>Thank you to everyone who came along to the London Geek Night last night. There were many good questions and comments throughout the evening. I didn&#8217;t respond to all of them satisfactorily at the time, so I thought I&#8217;d expand on a few of them here.</p>

<h3>Enforcing the protocol</h3>

<p><a href="http://alexscordellis.blogspot.com/" title="Alex Scordellis's blog" target="_blank">Alex Scordellis</a> asked a very challenging question: how does the server prevent the client from &#8220;teleporting&#8221; to locations that aren&#8217;t immediately accessible from its current location? In other words, how do we stop the client jumping around the app, ignoring the advertised URIs, going off the rails, and interacting with resources in a way that contravenes the application protocol?</p>

<p>One solution to this problem is to use ephemeral URIs. Remember, other than the entry point URI, every URI the client encounters will have been minted by the server as it generates representations. By appending an expiry time, signed using a private key held only by the server, to each URI, we can ensure that each URI the client is given is valid only for a short period of time. <a href="http://www.subbu.org/" title="Subbu Allamaraju's blog" target="_blank">Subbu Allamaraju</a> and <a href="http://www.amundsen.com/blog/" title="Mike Amundsen's blog" target="_blank">Mike Amundsen</a> talk about ephemeral URIs in their forthcoming book, <a href="http://www.restful-webservices-cookbook.org/" title="RESTful Web Services Cookbook" target="_blank">RESTful Web Services Cookbook</a>. Amazon S3 offers the capability to sign URIs in just this fashion so as to limit access to resources.</p>

<p>Of course, this still leaves a short &#8220;teleport&#8221; window open, which the client can use to make multiple requests of a resource that it ought no longer access. To close this window, we might consider maintaining a secret resource access counter per ephemeral URI inside the server implementation. When the counter limit is reached, the server replies with 204 No Content. The only way for the client to access this resource again would be for it to play fair by the application protocol, navigating advertised transitions until it comes upon a representation containing a link (with new ephemeral URI) to the desired resource.</p>

<p>It can be argued that a GET that increments a secret counter associated with a resource (at an ephemeral URI) is no longer safe. Is the incrementing of a secret counter an unintended user-visible side-effect? The argument is played out in the comments to a post from <a href="http://intertwingly.net/blog/" title="Sam Ruby's blog" target="_blank">Sam Ruby</a> from 2002. Read the comments <a href="http://intertwingly.net/blog/2002/09/02/Shades-of-Grey" title="Shades of Grey" target="_blank">here</a> and make up your own mind.</p>

<h3>Resource design</h3>

<p><a href="http://www.oshineye.com/theAbode.html" title="Adewale Oshineye's blog" target="_blank">Adewale Oshineye</a> asked how a design ought accommodate making small changes to large resources &#8211; is this necessarily an inefficient operation that requires the client to PUT the entire representation back? He also asked how one might support large batch operations in an efficient manner.</p>

<p>HTTP PATCH supplies one mechanism for dealing with partial updates, which fall under Adewale&#8217;s first question. Taken together, however, I feel Adewale&#8217;s questions lead us to reflect on the role of resource design in the overall design and implementation of a RESTful application. If we model our resources based simply on an understanding of business resources, we can end up with a resource landscape that&#8217;s not amenable to being manipulate din the way we require.</p>

<p>The first piece of advice usually given a would-be service designer is: identify your resources and assign them URIs. But this can all too easily lead us to identify only business resources &#8211; customer, product, order, etc &#8211; and equate these business resources with the resources our service exposes. But remember, the resources we deal with on the Web are information resources, which are somewhat more abstract than the business resources we typically capture in a domain model.<p>

<p>The design and implementation strategy that <a href="http://jim.webber.name/" title="Jim Webber's blog" target="_blank">Jim</a>, <a href="http://savas.me/" title="Savas Parastatidis's blog" target="_blank">Savas</a> and I recommend in <a href="http://www.facebook.com/RESTinPractice" title="REST in Practice" target="_blank"><em>REST in Practice</em></a> is:</p>

<ol start="1">
<li>Design applications in terms of application protocol state machines</li>
<li>Implement them in terms of resource lifecycles</li>
<li>Advertise/document them using media types, link relation values and HTTP idioms</li>
</ol>

<p>The transition from 1. to 2. here requires the service designer to decompose an application protocol into whatever information resources and information resource lifecycles are necessary to realise the protocol. The kinds of resources you identify using this approach may look a little different from the ones you would have identified had you taken a business domain resource approach.</p>

<p>I&#8217;m being a little vague here, but it&#8217;s a subject I plan to develop in more detail at <a href="http://qconlondon.com/london-2010/presentation/The+Counterintuitive+Web" title="The Counterintuitive Web" target="_blank">QCon London</a>.</p>

<h3>And finally&#8230;</h3>

<p>In other comments, <a href="http://twitter.com/otfrom" title="Bruce Durling" target="_blank">Bruce Durling</a> pointed out I was mixing up 3rd edition <em>D&#038;D</em> and 1st edition <em>AD&#038;D</em> rules. Guilty as charged. -1 Credibility, no saving throw.</p>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2010/02/12/london-geek-night/#comments" thr:count="8" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2010/02/12/london-geek-night/feed/atom/" thr:count="8" />
		<thr:total>8</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[Hydras and Hypermedia at London Geek Night]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2010/01/28/hydras-and-hypermedia-at-london-geek-night/" />
		<id>http://iansrobinson.com/?p=178</id>
		<updated>2010-02-02T10:42:25Z</updated>
		<published>2010-01-28T09:42:16Z</published>
		<category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="REST" />		<summary type="html"><![CDATA[

On February 11th I&#8217;ll be presenting Hydras and Hypermedia at London Geek Night.

Do you know what your enterprise apps get up to in their time off? Fighting fantasy, pick-your-path, hypermedia-driven, RESTful Web application adventures &#8211; of course.

In this speculative dungeon delve I&#8217;ll show how we can use hypermedia-driven Web applications to model rich workflows. We&#8217;ll [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2010/01/28/hydras-and-hypermedia-at-london-geek-night/"><![CDATA[<div class="vcalendar">

<p>On February 11th I&#8217;ll be presenting <em>Hydras and Hypermedia</em> at <a href="http://londongeeknights.wetpaint.com/page/Hydras%20and%20Hypermedia" title="London Geek Night" target="_blank">London Geek Night</a>.</p>

<p>Do you know what your enterprise apps get up to in their time off? Fighting fantasy, pick-your-path, hypermedia-driven, RESTful Web application adventures &#8211; of course.</p>

<p>In this speculative dungeon delve I&#8217;ll show how we can use hypermedia-driven Web applications to model rich workflows. We&#8217;ll tackle the many-headed Hydra of HATEOAS, the &#8220;Hypermedia as the Engine of Application State&#8221; monster; level up through the Web services maturity heuristic; and meet the dwarves with grudges. On the way, we&#8217;ll learn how to model business processes as domain application protocols, implement them in terms of resource lifecycles, and advertise them using HTTP idioms, media types and link relation values.</p>

<dl id="hcalendar-Hydras-and-Hypermedia" class="vevent">
<dt>Event</dt>
<dd><a href="http://londongeeknights.wetpaint.com/page/Hydras%20and%20Hypermedia" class="url summary" title="London Geek Night" target="_blank">London Geek Night</a></dd>
<dt>Description</dt>
<dd><em class="description">Hydras and Hypermedia</em></dd>
<dt>Date</dt>
<dd><span class="eventdate">11th February</span></dd>
<dt>Time</dt>
<dd><span class="eventtime"><abbr title="20100211T1900+0100" class="dtstart">7 pm</abbr> &#8211; <abbr title="20100211T2200+0100" class="dtend">10 pm</abbr></span></dd>
<dt>Location</dt>
<dd class="location">
	<div class="vcard">
		<span class="fn org">ThoughtWorks UK Office</span>
		<div class="adr">
			<span class="street-address">Berkshire House</span>
			<span class="locality">168-173 High Holborn</span>
			<span class="region">London</span>
			<span class="postal-code">WC1V 7AA</span>
		</div>
	</div>
</dd>
</dl>

</div>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2010/01/28/hydras-and-hypermedia-at-london-geek-night/#comments" thr:count="5" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2010/01/28/hydras-and-hypermedia-at-london-geek-night/feed/atom/" thr:count="5" />
		<thr:total>5</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[When to Use Atom]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2010/01/19/when-to-use-atom/" />
		<id>http://iansrobinson.com/?p=170</id>
		<updated>2010-01-19T17:00:47Z</updated>
		<published>2010-01-19T17:00:47Z</published>
		<category scheme="http://iansrobinson.com" term="REST" />		<summary type="html"><![CDATA[There are two extremes of Atom usage: everything&#8217;s an Atom extension (direct extension) versus everything goes in the atom:content element (enveloping).

A little while ago, Bill de hÓra expressed his preference for direct extension over enveloping. At its worst, enveloping results in near anaemic Atom entries, with very few of the Atom metadata elements put to [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2010/01/19/when-to-use-atom/"><![CDATA[<p>There are two extremes of Atom usage: <em>everything&#8217;s an Atom extension</em> (direct extension) versus <em>everything goes in the <code>atom:content</code> element</em> (enveloping).</p>

<p>A little while ago, Bill de hÓra expressed his preference for <a href="http://www.dehora.net/journal/2009/11/28/extensions-v-envelopes/" title="Extensions v Envelopes" target="_blank">direct extension over enveloping</a>. At its worst, enveloping results in near anaemic Atom entries, with very few of the Atom metadata elements put to good use, rightly prompting Bill&#8217;s question: &#8220;why bother using Atom at all?&#8221;</p>

<p>Like Bill, I&#8217;ve gone back and forth between these two options. At present, I&#8217;m inclined to use enveloping more than direct extension, but only if I can still put the Atom metadata to good use. If I find I&#8217;m having to fill out Atom metadata elements with lots of dummy information, just so that I can use Atom to transfer some opaque data between applications, I quickly turn to another format.</p>

<p>To my mind, Atom&#8217;s &#8220;meta-purpose&#8221; is to establish a domain processing context for some content. In AtomPub, Atom artefacts establish a publishing context for Web content. When used to establish this publishing context, the Atom artefacts are called collections and members, rather than feeds and entries.</p>

<p>I prefer not to extend Atom beyond the domain processing context I&#8217;m trying to model: instead, I push the thing to be processed down into the content. This allows for <em>media type composition</em>, whereby one media type processor hands off to another as it works its way through a representation. A reasonably &#8220;generic&#8221; Atom client can resurrect the domain processing context, which then remains in force whilst a specialized media type handler deals with the content (according to its media type).</p>

<p>In the past I&#8217;ve illustrated this point by showing how <a href="http://www.infoq.com/presentations/robinson-restful-enterprise" title="RESTful Enterprise Development" target="_blank">Atom feeds can be used to represent streams of events</a>. The event metadata maps nicely to Atom metadata. The content itself contains a snapshot of some other resource&#8217;s state at the point the event occurred. In other words, the Atom metadata establishes an event-ish processing context for the content. When the client invokes a specialised handler for the content, it does so in the knowledge that its dealing with a representation of state at a particular point of time.</p>

<p>If I can&#8217;t separate a given problem into 1) an activity and accompanying processing context (e.g. &#8220;eventing&#8221;, &#8220;publishing&#8221;), and 2) the thing to be acted on, I&#8217;ll consider using something other than Atom.</p>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2010/01/19/when-to-use-atom/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2010/01/19/when-to-use-atom/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[ThoughtWorks QTB Feb 2010]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2010/01/12/thoughtworks-qtb-feb-2010/" />
		<id>http://iansrobinson.com/?p=164</id>
		<updated>2010-01-12T12:07:05Z</updated>
		<published>2010-01-12T12:07:05Z</published>
		<category scheme="http://iansrobinson.com" term="Agile" /><category scheme="http://iansrobinson.com" term="Behaviour-Driven Development" /><category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="SOA" />		<summary type="html"><![CDATA[I&#8217;ll be giving a ThoughtWorks Quarterly Technology Briefing in London and Manchester in a few weeks time, titled Business Architecture Foundations of IT.

I used to introduce this topic with a quote from Beckett&#8217;s Unnameable &#8211; &#8220;You must go on, I can&#8217;t go on, I&#8217;ll go on&#8221; &#8211; which nicely sums up the situation I see [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2010/01/12/thoughtworks-qtb-feb-2010/"><![CDATA[<p>I&#8217;ll be giving a ThoughtWorks Quarterly Technology Briefing in London and Manchester in a few weeks time, titled <em>Business Architecture Foundations of IT</em>.</p>

<p>I used to introduce this topic with a quote from Beckett&#8217;s <em>Unnameable</em> &#8211; &#8220;You must go on, I can&#8217;t go on, I&#8217;ll go on&#8221; &#8211; which nicely sums up the situation I see many organisations facing today: burdened with a legacy systems estate, unable to stop the world, sorely in need of a change in strategy to face the future.</p>

<p>Based on case study material from the last few years, talk suggests some future proofing strategies that can arise out of an assessment of today&#8217;s business operations.</p>

<h2>Event Details</h2>

<ul>
	<li>Manchester 16th February, Radisson Hotel, Free Trade Hall, Peter Street, M1 6pm-9pm <a href="http://connect.thoughtworks.com/g/?GTVU7O9SDQ">Register here</a></li>
	<li>London 19th February, Liverpool Street, EC2 8am-10.30am <a href="http://connect.thoughtworks.com/g/?GTVU7O9SDQ">Register here</a></li>
</ul>

]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2010/01/12/thoughtworks-qtb-feb-2010/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2010/01/12/thoughtworks-qtb-feb-2010/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[Call for Papers: WS-REST 2010]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2010/01/12/call-for-papers-ws-rest-2010/" />
		<id>http://iansrobinson.com/?p=158</id>
		<updated>2010-01-12T11:59:11Z</updated>
		<published>2010-01-12T11:59:11Z</published>
		<category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="REST" />		<summary type="html"><![CDATA[Paper Submission: February 8, 2010

Call for Papers

The First International Workshop on RESTful Design (WS-REST 2010) aims to provide a forum for discussion and dissemination of research on the emerging resource-oriented style of Web service design.

Background

Over the past few years, several discussions between advocates of the two major architectural styles for designing and implementing Web services [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2010/01/12/call-for-papers-ws-rest-2010/"><![CDATA[<p>Paper Submission: February 8, 2010</p>

<h2>Call for Papers</h2>

<p>The First International Workshop on RESTful Design (WS-REST 2010) aims to provide a forum for discussion and dissemination of research on the emerging resource-oriented style of Web service design.</p>

<h2>Background</h2>

<p>Over the past few years, several discussions between advocates of the two major architectural styles for designing and implementing Web services (the RPC/ESB-oriented approach and the resource-oriented approach) have been mainly held outside of the research and academic community, within dedicated mailing lists, forums and practitioner communities. The RESTful approach to Web services has also received a significant amount of attention from industry as indicated by the numerous technical books being published on the topic.</p>

<p>This first edition of WS-REST, co-located with the WWW2010 conference, aims at providing an academic forum for discussing current emerging research topics centered around the application of REST, as well as advanced application scenarios for building large scale distributed systems.</p>

<p>In addition to presentations on novel applications of RESTful Web services technologies, the workshop program will also include discussions on the limits of the applicability of the REST architectural style, as well as recent advances in research that aim at tackling new problems that may require to extend the basic REST architectural style. The organizers are seeking novel and original, high quality paper submissions on research contributions focusing on the following topics:</p>

<ul>
	<li>Applications of the REST architectural style to novel domains</li>
	<li>Design Patterns and Anti-Patterns for RESTful services</li>
	<li>RESTful service composition</li>
	<li>Inverted REST (REST for push events)</li>
	<li>Integration of Pub/Sub with REST</li>
	<li>Performance and QoS Evaluations of RESTful services</li>
	<li>REST compliant transaction models</li>
	<li>Mashups</li>
	<li>Frameworks and toolkits for RESTful service implementations</li>
	<li>Frameworks and toolkits for RESTful service consumption</li>
	<li>Modeling RESTful services</li>
	<li>Resource Design and Granularity</li>
	<li>Evolution of RESTful services</li>
	<li>Versioning and Extension of REST APIs</li>
	<li>HTTP extensions and replacements</li>
	<li>REST compliant protocols beyond HTTP</li>
	<li>Multi-Protocol REST (REST architectures across protocols)</li>
</ul>

<p>All workshop papers are peer-reviewed and accepted papers will be published as part of the ACM Digital Library. Two kinds of contributions are sought: short position papers (not to exceed 4 pages in ACM style format) describing particular challenges or experiences relevant to the scope of the workshop, and full research papers (not to exceed 8 pages in the ACM style format) describing novel solutions to relevant problems. Technology demonstrations are particularly welcome, and we encourage authors to focus on &#8220;lessons learned&#8221; rather than describing an implementation.</p>

<p>Papers must be submitted electronically in PDF format. Submit at the <a href="http://ws-rest.org/Submit">WS-REST 2010 EasyChair installation</a>.</p>

<h2>Important Dates</h2>
<ul>
	<li>Submission deadline: February 8, 2010, 23.59 Hawaii time</li>
	<li>Notification of acceptance: March 1, 2010</li>
	<li>Camera-ready versions of accepted papers: March 14, 2010</li>
	<li>WS-REST 2010 Workshop: April 26, 2010</li>
</ul>

<h2>Program Committee Chairs</h2>

<ul>
	<li>Cesare Pautasso, Faculty of Informatics, USI Lugano, Switzerland</li>
	<li>Erik Wilde, School of Information, UC Berkeley, USA</li>
	<li>Alexandros Marinos, Faculty of Engineering &#038; Physical Sciences, University of Surrey, UK</li>
</ul>

<h2>Program Committee</h2>

<ul>
	<li>Rosa Alarcon, Pontificia Universidad Catolica de Chile</li>
	<li>Subbu Allamaraju, Yahoo Inc., USA</li>
	<li>Tim Bray, Sun Microsystems, USA</li>
	<li>Bill Burke, Red Hat, USA</li>
	<li>Benjamin Carlyle, Australia</li>
	<li>Stuart Charlton, Elastra, USA</li>
	<li>Joe Gregorio, Google, USA</li>
	<li>Michael Hausenblas, DERI, Ireland</li>
	<li>Rohit Khare, 4K Associates, USA</li>
	<li>Frank Leymann, University of Stuttgart, Germany</li>
	<li>Mark Nottingham, Yahoo Inc., Australia</li>
	<li>Aristotle Pagaltzis, Germany</li>
	<li>Ian Robinson, Thoughtworks, USA</li>
	<li>Richard Taylor, UC Irvine, USA</li>
	<li>Stefan Tilkov, innoQ, Germany</li>
	<li>Steve Vinoski, Verivue, USA</li>
	<li>Jim Webber, Thoughtworks, USA</li>
	<li>Olaf Zimmermann, IBM Zurich Research Lab, Switzerland</li>
</ul>

<h2>Contact</h2>

<ul>
	<li>WS-REST Web site:<a href="http://ws-rest.org/"> http://ws-rest.org/</a></li>
	<li>WS-REST Email: <a href="mailto:chairs@ws-rest.org">chairs@ws-rest.org</a></li>
</ul>

]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2010/01/12/call-for-papers-ws-rest-2010/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2010/01/12/call-for-papers-ws-rest-2010/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[QCon San Francisco 2009]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2009/11/24/qcon-san-francisco-2009/" />
		<id>http://iansrobinson.com/?p=151</id>
		<updated>2009-11-24T18:52:29Z</updated>
		<published>2009-11-24T18:52:29Z</published>
		<category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="REST" /><category scheme="http://iansrobinson.com" term="SOA" />		<summary type="html"><![CDATA[The slides from the day-long tutorial, REST in Practice, that Jim Webber and I gave at QCon San Francisco can be found here.

Also as part of QCon, I gave a talk, Beginning an SOA Initiative, the slides of which can be downloaded here.

Jim and I will be giving the REST tutorial at QCon London next [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2009/11/24/qcon-san-francisco-2009/"><![CDATA[<p>The slides from the day-long tutorial, <a href="http://qconsf.com/sf2009/presentation/REST+in+Practice.+A+Tutorial+on+Web-based+Services" title="REST in Practice. A Tutorial on Web-based Services" target="_blank"><em>REST in Practice</em></a>, that <a href="http://jim.webber.name/" title="Jim Webber's blog" target="_blank">Jim Webber</a> and I gave at <a href="http://qconsf.com/sf2009/" title="QCon San Francisco 2009" target="_blank">QCon San Francisco</a> can be found <a href="http://dl.dropbox.com/u/2877247/Tutorial.pdf.zip" title="Download pdf" target="_blank">here</a>.</p>

<p>Also as part of QCon, I gave a talk, <a href="http://qconsf.com/sf2009/presentation/Beginning+an+SOA+Initiative" title="Beginning an SOA Initiative" target="_blank"><em>Beginning an SOA Initiative</em></a>, the slides of which can be downloaded <a href="http://qconsf.com/sf2009/file?path=/qcon-sanfran-2009/slides/IanRobinson_BeginningAnSOAInitiative.pdf" title="Download pdf" target="_blank">here</a>.</p>

<p>Jim and I will be giving the REST tutorial at <a href="http://qconlondon.com/london-2010/" title="QCon London 2010" target="_blank">QCon London</a> next year. We&#8217;re already planning plenty of changes so as to make it a little more hands-on and practical.</p>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2009/11/24/qcon-san-francisco-2009/#comments" thr:count="5" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2009/11/24/qcon-san-francisco-2009/feed/atom/" thr:count="5" />
		<thr:total>5</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[JAOO Slides]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2009/10/07/jaoo-slides/" />
		<id>http://iansrobinson.com/?p=147</id>
		<updated>2009-10-07T06:15:30Z</updated>
		<published>2009-10-07T06:15:30Z</published>
		<category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="REST" />		<summary type="html"><![CDATA[The slides from yesterday&#8217;s talk are here. Thank you to everyone who attended &#8211; there were some great questions both during and after.]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2009/10/07/jaoo-slides/"><![CDATA[<p>The slides from yesterday&#8217;s talk are <a href="http://jaoo.dk/aarhus-2009/file?path=/jaoo-aarhus-2009/slides/IanRobinson_HydrasAndHypermedia.pdf" title="Hydras and Hypermedia" target="_blank">here</a>. Thank you to everyone who attended &#8211; there were some great questions both during and after.</p>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2009/10/07/jaoo-slides/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2009/10/07/jaoo-slides/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[JAOO Aarhus 2009]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2009/10/02/jaoo-aarhus-2009/" />
		<id>http://iansrobinson.com/?p=140</id>
		<updated>2009-10-02T12:46:28Z</updated>
		<published>2009-10-02T12:46:28Z</published>
		<category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="REST" />		<summary type="html"><![CDATA[I&#8217;ll be at the wonderful JAOO in Aarhus throughout most of next week (Monday, September 5th to Thursday, September 8th). On Tuesday I&#8217;m giving a talk, Hydras and Hypermedia, that reveals what your enterprise apps get up to when they cut loose at the weekends; if you&#8217;re curious, come along and meet Wired ERP and [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2009/10/02/jaoo-aarhus-2009/"><![CDATA[<p>I&#8217;ll be at the wonderful <a href="http://jaoo.dk/aarhus-2009/" title="JAOO Aarhus 2009 Conference" target="_blank">JAOO</a> in Aarhus throughout most of next week (Monday, September 5th to Thursday, September 8th). On Tuesday I&#8217;m giving a talk, <em>Hydras and Hypermedia</em>, that reveals what your enterprise apps get up to when they cut loose at the weekends; if you&#8217;re curious, come along and meet Wired ERP and the DeeEmEs. The presentation is really my ticket to seeing talks from all the great speakers on Stefan Tilkov&#8217;s <a href="http://jaoo.dk/aarhus-2009/tracks/show_track.jsp?trackOID=273" title="Is REST turning SOA's promise into reality?" target="_blank"><em>Is REST turning SOA&#8217;s promise into reality?</em></a> track: <a href="http://jaoo.dk/aarhus-2009/speaker/Rachel+Reinitz" title="Rachel Reinitz" target="_blank">Rachel Reinitz</a>, <a href="http://www.subbu.org/" title="Subbu Allamaraju's blog" target="_blank">Subbu Allamaraju</a>, <a href="http://www.amundsen.com/blog/" title="Mike Amundsen's blog" target="_blank">Mike Amundsen</a>, <a href="http://atmanes.blogspot.com/" title="Anne Thomas-Manes's blog" target="_blank">Anne Thomas-Manes</a>, and <a href="http://www.innoq.com/blog/st/" title="Stefan Tilkov's blog" target="_blank">Stefan</a>.</p>
<p>At other times in the week you&#8217;ll find me hanging around the ThoughtWorks booth, where besides an informal chat, you can schedule a <a href="http://connect.thoughtworks.com/g/?QQSJIMVMF4" title="ThoughtWorks JAOO Consultant Meeting" target="_blank">30-minute one-on-one</a> meeting with one of the many ThoughtWorks consultants attending the conference.</p>
<p><img src="http://farm1.static.flickr.com/52/182117750_f2b33d14af.jpg" alt="Not a Beholder" align="top" /></p>
<p>Photo taken from <a href="http://www.flickr.com/photos/eldave/" title="ElDave's Flickr stream" target="_blank">ElDave&#8217;s Flickr stream</a> under the Creative Commons licence
</p>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2009/10/02/jaoo-aarhus-2009/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2009/10/02/jaoo-aarhus-2009/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[Europe Virtual ALT.NET, July 20th]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2009/07/18/europe-virtual-alt-net-july-20th/" />
		<id>http://iansrobinson.com/?p=129</id>
		<updated>2009-07-19T21:27:05Z</updated>
		<published>2009-07-18T14:50:54Z</published>
		<category scheme="http://iansrobinson.com" term="Consumer-Driven Contracts" /><category scheme="http://iansrobinson.com" term="Events" /><category scheme="http://iansrobinson.com" term="REST" /><category scheme="http://iansrobinson.com" term="SOA" />		<summary type="html"><![CDATA[On Monday 20th July, Jim Webber and I, the golem and the frog, will be participating in the European Virtual ALT.NET (E-VAN). Colin Jack has already assembled a bunch of interesting questions, covering not only REST, but Guerrilla SOA, ESBs, consumer-driven contracts, and capability modeling. 

The session will be on Live Meeting, at http://snipr.com/virtualaltnet.

Please join [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2009/07/18/europe-virtual-alt-net-july-20th/"><![CDATA[<p>On Monday 20th July, <a href="http://jim.webber.name/" title="Jim Webber's blog" target="_blank">Jim Webber</a> and I, the <a href="http://www.infoq.com/interviews/robinson-webber-rest" title="Ian Robinson and Jim Webber on Web-based Integration" target="_blank">golem and the frog</a>, will be participating in the European Virtual ALT.NET (E-VAN). <a href="http://colinjack.blogspot.com/" title="Colin Jack's blog" target="_blank">Colin Jack</a> has already assembled a bunch of <a href="http://groups.google.com/group/virtualaltnet/browse_thread/thread/b3efba445f6ff2eb?hl=en" title="Questions for Jim and Ian" target="_blank">interesting questions</a>, covering not only REST, but Guerrilla SOA, ESBs, consumer-driven contracts, and capability modeling.</p> 

<p>The session will be on Live Meeting, at <a href="http://snipr.com/virtualaltnet" title="Europe Virtual ALT.NET Live Meeting" target="_blank">http://snipr.com/virtualaltnet</a>.</p>

<p>Please join us on Monday, times below:</p>

<ul>
<li>France/Germany/Belgium: 8:00PM</li>
<li>UK is: 7:00PM</li>
<li>EST in the US: 2:00PM</li>
<li>PST in the US: 11:00AM</li>
</ul>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2009/07/18/europe-virtual-alt-net-july-20th/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2009/07/18/europe-virtual-alt-net-july-20th/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>iansrobinson</name>
						<uri>http://www.iansrobinson.com</uri>
					</author>
		<title type="html"><![CDATA[How Do You Link?]]></title>
		<link rel="alternate" type="text/html" href="http://iansrobinson.com/2009/07/16/how-do-you-link/" />
		<id>http://iansrobinson.com/?p=120</id>
		<updated>2009-07-16T14:07:09Z</updated>
		<published>2009-07-16T13:08:52Z</published>
		<category scheme="http://iansrobinson.com" term="REST" />		<summary type="html"><![CDATA[Consider these links:

Example 1

&#60;preceding&#62;http://iansrobinson.com/0F449B535C2C&#60;/preceding&#62;
&#60;following&#62;http://iansrobinson.com/796DC49C644E&#60;/following&#62;

and

Example 2

&#60;link rel=&#34;http://iansrobinson.com/resources/link-relations/preceding&#34; href=&#34;http://iansrobinson.com/0F449B535C2C&#34;/&#62;
&#60;link rel=&#34;http://iansrobinson.com/resources/link-relations/following&#34; href=&#34;http://iansrobinson.com/796DC49C644E&#34;/&#62;

Functionally equivalent?

There are two separate concerns at play here: finding links, and understanding links. An application&#8217;s semantic space &#8211; the set of link relations it uses to annotate links &#8211; is extensible. Understanding targets an open set. The capability to find links, on the other hand, ought [...]]]></summary>
		<content type="html" xml:base="http://iansrobinson.com/2009/07/16/how-do-you-link/"><![CDATA[<p>Consider these links:</p>

<h3>Example 1</h3>

<pre><code>&lt;preceding&gt;http://iansrobinson.com/0F449B535C2C&lt;/preceding&gt;
&lt;following&gt;http://iansrobinson.com/796DC49C644E&lt;/following&gt;</code></pre>

<p>and</p>

<h3>Example 2</h3>

<pre><code>&lt;link rel=&quot;http://iansrobinson.com/resources/link-relations/preceding&quot; href=&quot;http://iansrobinson.com/0F449B535C2C&quot;/&gt;
&lt;link rel=&quot;http://iansrobinson.com/resources/link-relations/following&quot; href=&quot;http://iansrobinson.com/796DC49C644E&quot;/&gt;</code></pre>

<p>Functionally equivalent?</p>

<p>There are two separate concerns at play here: <em>finding</em> links, and <em>understanding</em> links. An application&#8217;s semantic space &#8211; the set of link relations it uses to annotate links &#8211; is extensible. Understanding targets an open set. The capability to find links, on the other hand, ought ideally target a closed set.</p>

<p>In Example 1, each element bears the weight of addressing both concerns. The ability to find links is pinned to an open set. In Example 2, by contrast, the <code>link</code> element belongs to a closed set, with the semantic variance broken out and herded into the <code>rel</code> attribute value. Much easier to find links belonging to Example 2 using an application-agnostic function, a LINQ for Links, as it were.</p>

<p>What happens when we extend an application&#8217;s semantic space?</p> 

<h3>Example 3</h3>

<pre><code>&lt;preceding&gt;http://iansrobinson.com/0F449B535C2C&lt;/preceding&gt;
&lt;following&gt;http://iansrobinson.com/796DC49C644E&lt;/following&gt;
&lt;all&gt;http://iansrobinson.com/22F4D1881C36&lt;/all&gt;</code></pre>

<h3>Example 4</h3>

<pre><code>&lt;link rel=&quot;http://iansrobinson.com/resources/link-relations/preceding&quot; href=&quot;http://iansrobinson.com/0F449B535C2C&quot;/&gt;
&lt;link rel=&quot;http://iansrobinson.com/resources/link-relations/following&quot; href=&quot;http://iansrobinson.com/796DC49C644E&quot;/&gt;
&lt;link rel=&quot;http://iansrobinson.com/resources/link-relations/all&quot; href=&quot;http://iansrobinson.com/22F4D1881C36&quot;/&gt;</code></pre>

<p>A client of Example 3 will likely only be able to report: &#8220;foreign markup found.&#8221; A client of Example 4 will be able to recognize the new link, though not necessarily understand the new <code>rel</code> value.</p>]]></content>
		<link rel="replies" type="text/html" href="http://iansrobinson.com/2009/07/16/how-do-you-link/#comments" thr:count="6" />
		<link rel="replies" type="application/atom+xml" href="http://iansrobinson.com/2009/07/16/how-do-you-link/feed/atom/" thr:count="6" />
		<thr:total>6</thr:total>
	</entry>
	</feed>
