Declarative web services

I’ve been developing a lot of web services lately. I usually do this with Okapi and web.py. Somehow the tasks for creating a web service are always more or less the same. Specify URL schema Validate input parameters Request data: either from a database or from at least one other web service Identify output format using URL or HTTP headers Output data in the correct format And I think that even web.py doesn’t do a good enough job of making this easy and really fast. ...

May 23, 2008 · Patrice Neff

Firebug 1.0 Beta

The new version of Firebug is now available. It’s the 1.0 beta release. It contains some great new features and I’d advise you to try it out if you develop web sites. Joe was pondering to make the new version a commercial release. Instead he has now decided to leave it Open Source but asks for donations.

December 4, 2006 · Patrice Neff

HTTP debugging

As a web developer I often have to debug HTTP problems. At local.ch we also do the frontend/backend communication using the HTTP protocol, so sometimes I also have to debug that. So over the whole time I’ve been doing that, some tips have accumulated. LiveHTTPHeaders LiveHTTPHeaders is a Firefox extension that allows to see the headers exchanged between the browser and server. It adds a “Headers” tab in the page information. This window can be accessed with Apple+I on the Mac or Ctrl+I on Linux and Windows. The headers tab shows a list of the headers that Firefox sent to the server and a separate list of the response headers sent by the server. ...

November 20, 2006 · Patrice Neff