app.use(express.bodyParser());and put this before the routing definition, like this
app.configure('development', function() {
console.log("Development mode");
app.configure(function() {
app.use(express.bodyParser());
app.use(app.router);
.....
});
});
here is the related google groups thread.