// what about allowing devs to invoke methods on their resources? do we
// allow any method value, if it matches a method name?
res = jsonResourceFactory.wrapResource(host, this, method, href);
if( res instanceof PostableResource) {
PostableResource pr = (PostableResource) res;
return pr.processForm(parameters, files);
} else {
return null;
}
}