Hello again,

Is it possible for vibe to handle being passed in complex
documents as parameters for a RESTful web service? I don't see
any examples of this in the vibe.httpd.rest module.

For example:

curl -i -XPOST -H "Content-Type: application/json"
http://localhost:8080/format -d '{"doc": { "foo": 1, "bar":
"baz"}}'

I tried this with a method that looks like this:

string postFormat(string[string] doc)
{
...
}

This resulted in an error because 1 is not a string. My concern
is if I want to pass in more complex docs with several levels of
nesting, arrays, etc., is that possible using the rest module?
Or, do I have to handle it like a normal form upload and parse
the JSON there?