I started experimenting with iisnode and expressjs to create a REST API with node.
So, on server.js server, I created something like
app.put("/test", function(req, res){ ... });
However, when I execute the PUT request, I get 405 Method not allowed
from the IIS 7.5 installation.
Any idea on how to solve this?
By the way, I already googled and tried to add PUT verbs here and there in different Handler mappings without success ...
source share