Comments
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Cloud Computing
Conference & Expo
November 2-4, 2009 NYC
Register Today and SAVE !..

2008 West
DIAMOND SPONSOR:
Data Direct
SOA, WOA and Cloud Computing: The New Frontier for Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
GOLD SPONSORS:
Appsense
User Environment Management – The Third Layer of the Desktop
Cordys
Cloud Computing for Business Agility
EMC
CMIS: A Multi-Vendor Proposal for a Service-Based Content Management Interoperability Standard
Freedom OSS
Practical SOA” Max Yankelevich
Intel
Architecting an Enterprise Service Router (ESR) – A Cost-Effective Way to Scale SOA Across the Enterprise
Sensedia
Return on Assests: Bringing Visibility to your SOA Strategy
Symantec
Managing Hybrid Endpoint Environments
VMWare
Game-Changing Technology for Enterprise Clouds and Applications
Click For 2008 West
Event Webcasts

2008 West
PLATINUM SPONSORS:
Appcelerator
Get ‘Rich’ Quick: Rapid Prototyping for RIA with ZERO Server Code
Keynote Systems
Designing for and Managing Performance in the New Frontier of Rich Internet Applications
GOLD SPONSORS:
ICEsoft
How Can AJAX Improve Homeland Security?
Isomorphic
Beyond Widgets: What a RIA Platform Should Offer
Oracle
REAs: Rich Enterprise Applications
Click For 2008 Event Webcasts
In many cases, the end of the year gives you time to step back and take stock of the last 12 months. This is when many of us take a hard look at what worked and what did not, complete performance reviews, and formulate plans for the coming year. For me, it is all of those things plus a time when I u...
SYS-CON.TV
Going the Last Mile
Going the Last Mile

One of the things I continually rail about in the Web services world is the lack of last mile technology - you know, the ability to get a Web service in front of a user. Even though a large number of Web services are designed solely for computer to computer communication the continuing reality is that more Web services are designed to interact directly or indirectly with human beings.

The problem, as I've stated before, is that there is no concept of user interface in Web services - no way to go that last mile and reach the end user. We've got a plethora of technologies to solve other problems, such as security or transactional integrity; sometimes we even have multiple standards for solving those problems.

Now, don't get me wrong, I know that having a transactional semantic, as complex as it sounds, is simpler than providing a generic approach to user interface. Computers have different operating systems, with different presentation constructs. Java took a shot at ubiquity of user interface with its write once/run anywhere approach, but the least common denominator approach they took with AWT and Swing left a bad taste in many people's mouths (not to mention that it left many people going to get a cup of coffee while they waited for the screen to respond). Regardless, Java failed to create a ubiquitous front end.

Ideally, we've abstracted the business rules into Web services, so all that's left for the front end is presentation logic - displaying data, acting as a data-gathering device that forwards all requests in coarse grained calls to a back end Web service.

Reality makes it a little more complex, as screen data population (think drop down list boxes, etc.) is rarely part of a pure Web services API design. So some additional Web services are usually needed for screen support.

Mix in things like validation (making sure the social Security number is nine digits, no alphabet characters), dependencies between screen controls (like filtering one drop-down based on the selection in another) and conditional displays (graying out options, or removing screen elements based on selections), and you have something that is more complex than just rendering screen elements. Then try to figure out how to do this in a neutral manner with regards to operating systems, and you have a good idea why no one has wanted to go here.

There is some hope however. Microsoft will be releasing a technology known as Avalon as part of their Longhorn release. Avalon will abstract the presentation logic into a format known as eXtensible Application Markup Language, or XAML. Based on XML, XAML describes the presentation aspects of an application's user interface. Like HTML, it is tag based, but unlike HTML, it's designed to be implemented on a native user interface (Windows, in this case), although it can also be utilized in a browser.

At the moment, no mention has been made of placing this language in open source or making a Web services standard out of it. Let me be the first to urge that this happen. Please, donate this to the community.

It would or should not be difficult to move a language that describes a user interface to other platforms. XAML will also work in Internet Explorer and for all intents and purposes that's a separate platform. And realistically, the language describes screen elements that are nearly identical across platforms anyway - a button is a button is a button, whether it's on a Mac, a Windows machine, a Solaris box, or a Linux PC. Sure there's always the chance of incompatibilities, or dummying down, but I'd take that (in the first release, at least) in exchange for being able to describe my application without code and let the operating system figure out how to run it, and what to display.

So I'm going to keep my fingers crossed. This is a good idea. Finally, the last mile.

About Sean Rhody
Sean Rhody is the founding-editor (1999) and editor-in-chief of SOA World Magazine. He is a respected industry expert on SOA and Web Services and a consultant with a leading consulting services company. Most recently, Sean served as the tech chair of SOA World Conference & Expo 2007 East.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

very well constructed article i must strongly aggree with the point of introducing language into the microsoft proposed web tag

I agree with Sean's position as more and more applications are being assembled on a service-oriented basis.
However, the solution is achievable today with the use of XForms model based approach generating XSL transformations to render the web forms/pages that are Browser compatible.
All the validation constraints can be automatically generated from the XML Schemas ensuring compatibility.
The HTML form submission can be converted automatically to an XML request document on returning to the server.
The final step is the UI orchestration to manage interactions with each Web Service needed to build drop-down lists and support the main service interaction.
All this can be achieved with 100% XML based technologies without any traditional coding. Solutions of this nature are already live today.

Steve Bailey
http://www.hyfinity.com

I think you are mixing the pears with the tomatoes.

Web-Services have one focus; and that focus is to provide an alternative communications layer to RPC's (all that we have now) and to make them usefull they have to keep close to what the mean to solve.

trying to include in the specification of a web-service is like trying to make the TCP/IP Layer how the data must be interpreted.

The TCP/IP Layer concern is communications ONLY. So web-services concern is to provide intercommunication between one machine and another. To make a API-call available to a client that only haves a HTTP Connection to do what it needs to do.

Then having a protocol to describe a front-end; like Tom (in the previous reply) said; there is HTML and DHTML.

If you want Remote-Window; you have X-Windows; that haves nothing to do with microsoft.

If you want a Richer forms and richer interactions; now Flash is the De-Facto statndard to do that.

And there (Im sure) many other tecnologies that enable you to do what you want to do.

Hahahahahahahahaha! Very amusing! You did mean this article as a spoof, didn't you? Because, as everyone knows, there is already a standard way of providing end-users with a GUI link to remote applications. It is called the World Wide Web.


Your Feedback
Chris wrote: very well constructed article i must strongly aggree with the point of introducing language into the microsoft proposed web tag
Steve Bailey wrote: I agree with Sean's position as more and more applications are being assembled on a service-oriented basis. However, the solution is achievable today with the use of XForms model based approach generating XSL transformations to render the web forms/pages that are Browser compatible. All the validation constraints can be automatically generated from the XML Schemas ensuring compatibility. The HTML form submission can be converted automatically to an XML request document on returning to the server. The final step is the UI orchestration to manage interactions with each Web Service needed to build drop-down lists and support the main service interaction. All this can be achieved with 100% XML based technologies without any traditional coding. Solutions of this nature are already live today. Steve Bailey http://www.hyfinity.com
Alex wrote: I think you are mixing the pears with the tomatoes. Web-Services have one focus; and that focus is to provide an alternative communications layer to RPC's (all that we have now) and to make them usefull they have to keep close to what the mean to solve. trying to include in the specification of a web-service is like trying to make the TCP/IP Layer how the data must be interpreted. The TCP/IP Layer concern is communications ONLY. So web-services concern is to provide intercommunication between one machine and another. To make a API-call available to a client that only haves a HTTP Connection to do what it needs to do. Then having a protocol to describe a front-end; like Tom (in the previous reply) said; there is HTML and DHTML. If you want Remote-Window; you have X-Windows; that haves nothing to do with microsoft. If you want a Richer forms and...
Tom Welsh wrote: Hahahahahahahahaha! Very amusing! You did mean this article as a spoof, didn't you? Because, as everyone knows, there is already a standard way of providing end-users with a GUI link to remote applications. It is called the World Wide Web.
SOA World Latest Stories
In a surprise move on Tuesday, January 10, Oracle wheeled out its Big Data Appliance. That’s the one it said in October would be ready sometime in the first half. Only nobody believed it meant early in the first half. Heck, it’s not even clear anybody thought Oracle could make the fi...
A Munich court Thursday found Motorola Mobility guilty of infringing an Apple patent and handed Apple a permanent injunction against two Android smartphones. Apple can enforce the injunction after posting a bond lest MMI succeed in invalidating the slide-to-unlock patent (EP1964022) ...
Quick Response (QR) codes are intended to help direct users quickly and easily to information about products and services, but they are also starting to be used for social engineering exploits. This article looks at the emergence of QR scan scams and the rising concern for users today....
The Chinese company that claims it owns the iPad trademark says it plans to seek a ban on iPad exports out of China, threatening global supplies. According to what a lawyer for Proview Technology (Shenzhen) Co Ltd told Reuters, the firm is petitioning Chinese customs to stop shipment...
Cisco Wednesday filed suit in the European Union’s second-highest court, the General Court in Luxembourg, challenging the European Commission’s rubber stamp last October of Microsoft’s $8.5 billion acquisition of Skype. Cisco says it isn’t opposed to the merger, but figures the EC sh...
2011 was a year of rapid adoption for public and private cloud services. Instant and on-demand server provisioning was the driving force behind the massive growth. On top, cloud server templates and script automation simplified application installation for simple and pre-defined applic...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


SYS-CON Featured Whitepapers
ADS BY GOOGLE