InfoQ

Presentation

Recorded at:
Recorded at

A couple of ways to skin an Internet-scale cat

Posted by Jim Webber on Oct 29, 2008 10:09 AM

Community
SOA
Topics
REST ,
Workflow / BPM ,
Web Services ,
WS Standards
Tags
WSDL ,
MEST
Summary
In this presentation, recorded at QCon San Francisco, ThoughtWorks director of professional services and all-around Web and Web services expert Jim Webber explains the core concepts of message-oriented web services, expresses his thorough dislike of WSDL, explains different approaches to Web architecture, and shows an example of a RESTful workflow.

Bio
Dr. Jim Webber is director of professional services for ThoughtWorks, where he works on distributed systems for clients worldwide. He has extensive Web Services architecture and development experience and was the lead developer with Hewlett-Packard on the industry's first Web Services Transaction solution and is co-author of the book "Developing Enterprise Web Services - An Architect's Guide".

About the conference
QCon is a conference that is organized by the community, for the community.The result is a high quality conference experience where a tremendous amount of attention and investment has gone into having the best content on the most important topics presented by the leaders in our community.QCon is designed with the technical depth and enterprise focus of interest to technical team leads, architects, and project managers.

6 comments

Reply

Good presentation but lacks the practical touch by Prashant Parab Posted Nov 4, 2008 11:43 PM
Re: Good presentation but lacks the practical touch by Jim Webber Posted Nov 5, 2008 10:06 AM
Great RESTful Talks by Iqbal Yusuf Posted Nov 8, 2008 10:22 PM
Micro Format by Iqbal Yusuf Posted Nov 8, 2008 10:25 PM
WebDAV by Pavel Veller Posted Nov 14, 2008 11:09 PM
The slides? by JAVAID ASLAM Posted Dec 1, 2008 10:41 AM
  1. Back to top

    Good presentation but lacks the practical touch

    Nov 4, 2008 11:43 PM by Prashant Parab

    This is a good REST presentation to understand its potential. But when you imagine to implement it for any real world enterprise systems you need to take care of some of the important aspects like transaction, reliability, etc. This presentation fails to cover those topics.

  2. Hi Prashant,

    You're right, these are important topics and they cannot be wedged into a single talk. On the upside, they are all in my forthcoming book on Web integration. In the meantime, here's a minimal set of answers to your points:

    1. Transactions - Don't use them, or at least not to cross service boundaries. Use other patterns to get consistent state updates (after all the whole REST thing is about state so it's a good tool for that job);

    2. Reliability - Safety and idempotence deal with this on the Web. Retries are valid, and the metadata you get from interacting with a service helps with recovery scenarios. Don't underestimate the utility of safe GETs.

    HTH.

    Jim

  3. Back to top

    Great RESTful Talks

    Nov 8, 2008 10:22 PM by Iqbal Yusuf

    Wonderful presentation Jim. You make hard topic easy. I'm a civil engineer turned into a web application developer by choice. People like me (who do not have C.Sc. degree) will benifit from your easy presentation.

    Thanks.

    Iqbal

  4. Back to top

    Micro Format

    Nov 8, 2008 10:25 PM by Iqbal Yusuf

    Hi Jim,

    You talked about micro format. Can you provide us with some links to this subject?

    Thanks.

    Iqbal

  5. Back to top

    WebDAV

    Nov 14, 2008 11:09 PM by Pavel Veller

    Some time ago I built a small WebDAV Access Point. While building it I had a very clear feeling that HTTP with its verbs and statuses was all I needed to build a transactional app. As part of that endeavour I built what was natural for WebDAV - bridge to documents and folders. But then I clearly saw how I could extend the capabilities of that little proxy tool for documents to also support CRUD operations for defects, tasks, etc. (it was a project management type of system that I built a bridge for). I even gave it a shot to see if it was really that easy to build it working right on the HTTP abstraction level but quickly gave up. Not because HTTP failed me. Simply because my work targeted MS Explorer as the only client and WebDAV response had no way of extending Explorer behaviour, I just could not expose "new" features to the end user; mapping them to the HTTP semantics was not an issue.

    I don't see WebDAV talked about much but it is a nice resource-oriented HTTP-based XML-driven protocol that has been out there for quite a while. Definitely not ready to be an integration services protocol but a good proof that the concept presented by Jim is perfectly viable.

    Nice talk, thanks a lot

  6. Back to top

    The slides?

    Dec 1, 2008 10:41 AM by JAVAID ASLAM

    Hi Jim,
    Excellent presentation-- very insightful.
    Can one get the slides somehow?

    Thank you,
    -Javaid

Educational Content

JRuby: The Pain of Bringing an Off-Platform Dynamic Language to the JVM

Charles Nutter discusses bringing JRuby to the JVM, why Ruby is hard to implement, JIT compilation, precompilation, core Ruby implementation, Java library access, library challenges and future plans.

Performance Anti-Patterns in Database-Driven Applications

Alois Reitbauer specifies several architectural anti-patterns that one should stay away from and which can downgrade an application’s performance.

Making TDD Stick: Problems and Solutions for Adopters

Teams in large organizations still struggle to adopt TDD. In this article Mark Levison shares problems he uncovered when he surveyed teams, and his own strategy to introduce TDD into an organization.

Testing is Overrated

In this talk from RubyFringe, Luke Francl asks: is developer-driven testing really the best way to find software defects? Or is the emphasis on testing and test coverage barking up the wrong tree?

VM Optimizations for Language Designers

John Pampuch discusses the HotSpot compiler, the history of Java performance, HotSpot development philosophies and challenges, optimization, JVM library improvements, and tips for better performance.

Keith Braithwaite, an Agile Skeptic

In this interview, Keith Braithwaite, an Agile developer, consultant and trainer, says that we should show a good deal of skepticism towards today’s Agile practice.

Workflow Orchestration Using Spring AOP and AspectJ

This article demonstrates how to build and orchestrate highly configurable and extensible yet light-weight embedded process flow using AOP techniques with Spring AOP and Aspect J.

Embrace Uncertainty

Jeff Patton explains why one needs to embrace uncertainty in order to succeed with his/her Agile project and how to avoid some of the common mistakes leading to project failure.