Technology should leverage your business (a.k.a. REST anyone ??)

Luca | June 29, 2008

Technology is a exceptional way of improving your business.

The REST architecture is a good example; with a clear URL we definitively improve the effectiveness of our message. People will easily remember the URL and our product will be faster on the market (because people actually know how to get to our product).

Now this sounds pretty basic in 2008 but it looks like that some big companies are still missing the whole point.

Some time ago I was googling for Quality Center, a testing tool owned by HP.

Now, in the REST era, I personally expect a URL on the line of:

www.hp.com/products/testing/qualitycenter

This is not what I had.

The actual direct URL to Quality Center is:

https://h10078.www1.hp.com/cda/hpms/display/main/hpms_content.jsp?zn=bto&cp=1-11-127-24_4000_100__

HP is obviously missing the key point: how I can remember that thing ???
Even if that is google first choice at the beginning I considered it just white noise because the URL is some undefined bunch and hieroglyphic instead of something with a semantic meaning.

And if I cannot get easily to your product, I will never be able to become a customer.

Sounds easy to me that I’ m not a marketing guy.
It’s still not so clear to some companies.

Flex: How to achieve proper separation of responsibilities

Luca | June 24, 2008

In a previous post I was discussing on my experience with Flex and one of the highlighted pain points is the extremely poor quality of the available tutorials.

Let’s have a look at the source code of the Flick tutorial:

before

In a single page you have:

  • the declaration of visual components (TileList)
  • the declaration of non visual component (HTTPService)
  • event handling (photoHandler)
  • data binding (photoFeed)
  • pure logic (requestPhotos)

If you decide to follow this development model you will obtain something that is extremely fragile to evolve or simply just to maintain.

Let’s start assigning the right responsibilities to the right objects.

The first step is creating our own Application object and use it as root in the mxml file:FlickrApplication

Now the HttpService component is not exposed anymore (and ideally can also be injected) and the events handling in the right place.
The second step is to extends the HttpService object to place the requestPhotos behaviour in the service. The result is below:

HttpService
At the end of this refactoring our mxml file looks like this:

after
Now we are declaring only visual components, and its only role is defining what we want to see and how.

This is the way of writing code.
The other one is just rubbish.

Working with Adobe Flex

Luca | June 21, 2008

RIA is a pretty hot topic in these days; even in ThoughtWorks a lot of discussions are going on (if you have time you can check fellow ThoughtWorkers posts here, here and here).

Funny enough I’m quite involved in the discussion, due to the use of Adobe Flex in my current project.

So what is Flex ?

Flex is the Adobe solution for RIA; based on ActionScript, it promises quick development of rich UI, the ability of testing and TDD-ing, good tools for development and out of the box integration with Web Services and REST services.

Everything sounds cool,but my experience with Flex highlighted few elements that worth a bit of attention…let’s analyze those one by one.

Testability

Let’s start from testability: ActionScript is really hard to test !!

A Unit testing framework (FlexUnit) is available, but it cannot be used by command line because the test runner works only in your browser; this slow down your development cycle (red bar-green bar- refactor) quite a lot, reducing your effectiveness during the day.

ActionScript is a half way between a static and a dynamic language (with a clear direction towards being a pure static language, my guess is that the language designers are trying to increase the language appeal to the Java and the dotNet community); the problem is that of a static language you miss the testing framework( mock libraries mostly) and of a dynamic one you’re missing the complete dynamic approach(all the classes are sealed by default, and you can’t do methods override at runtime even for objects that are explicitly declared dynamic).

In this scenario interaction testing is nearly impossible to do; sure, you can write your own mock library or stub everything out but this is a pretty strategic decision and a lot depends on the scope of the project.

Flex Security Model

Another aspect that gave us more than one trouble is Flex security model.

A Flex application can connect to a WebService or a REST service only if:

  • the target service is on the same domain where the Flex application is deployed
  • the target service is on an external domain but in the target domain there is a crossdomain.xml file that declares your domain as secure

What does it mean ?
That if I want to access a public feed (let’s say the BBC weather feed) BBC has to have my domain specified on its crossdomain.xml file that lives on its server.

This is a strong limitation: you cannot simply call BBC and ask to add your domain to their list of trusted site, and this take you down the path of over design your application (like adding a proxy web service on your domain just to be able to get the real data you need from BBC).

Tutorials and suggested best practices

A final comment is for the Adobe tutorials: it’s hard to see in 2008 something so poor.
The tutorials (have a look at the Flickr one to have an idea) are a collection of worst practices: the basic model of development is spaghetti-code, where you write all the code in the Script tag within your main Flex application file (mxml).

And what about separation of responsibilities ?
Do we really think that this is the code you obtain doing TDD ?

The heavily usage of the Script tag will take you down maintenance nightmares, transforming your application in something that is quickly out of your control and you cannot evolve.

…but is it good or not ??

Looking at these pain points, for me Flex is not yet a mature technology.
Adobe promises a lot but a number of the promises are not there; TDD is simply to hard to do due to the lack of mock support(even if it’s promised), the set of possible permissions you can give to the Flash player clashes with the new services oriented feature (introducing cumbersome security model that take you to overdesign as a possible workaround), and with really poor tools (FlexBuilder, the IDE, crashes regularly and the Ant task is pretty basic).

Comments
No Comments »
Categories
Web
Tags
,
Comments rss Comments rss
Trackback Trackback