Archive for July 20th, 2007

Requested a place at sourceforge for java Libhttpd

Today I requested some space at sourceforge for hosting my java libhttpd project. I would like to increase it’s user base and allow people to access the complete repositry without the need for me to open my own PC.

The request is pending. I’ll keep you informed!

Today I’ve got an e-mail from a user that liked to add a custom mimetype to the HttpServer. Well eeuh, that wasn’t directly possible, I had to fix this. I’ve made a patched version for him, you can download it here: libhttpd 20070720

You can add a custom mimetype the following way:

MimeTypeDetector.addMimeType( “.xsl”, “text/xml” );

Word of warning this patched version also contains Ruby on Rails like routing support, if you start to use it you’ll get spoiled ;-)
I will explain it’s usage in a future post.
The next official release will be done at sourceforge. Well I hope, they first need to approve my project request..

Agile Web Development with Rails 2nd Edition - Part 2

Wel I’ve almost completely read the book while I was away on a summer holiday. I still like the book. Specially the Web 2.0 part has been improved very much. Also the RESTful routes part is interesting, but I don’t see the direct need for it.

I still need to read the part about deployment, but after a quick peek, I think it’s much completer and more mature then the description in the first book. Also it shifted the usage advice from fastcgi to Capistrano. Well an interesting chapter.

The Ajax part also hinted me about the “readystate 3″ problem, which simply means that the web server should not use keep-alive with ajax. It looks like this is the problem I’ve encountered with a project of mine… Need to figure this out!