Hello !

I could not find anywhere mentions to how to execute internal requests.

I want to compose a response based one one or more calls to other urls on the same server (see http://en.wikipedia.org/wiki/Hierarchical_model-view-controller):

Obs.: Bellow is only to show what I want at high level

@path(/hello)
void sendHello(HTTPServerResponse res)
{
res.writeBody("Hello", "text/plain");
}

@path(/world)
void sendWorld(HTTPServerResponse res)
{
res.writeBody("World", "text/plain");
}

@path(/hello-world)
void sendHelloWorld(HTTPServerResponse res)
{
string result = getInternal("/hello");
result ~= getInternal("/world");
res.writeBody(result, "text/plain");
}