I have downloaded the latest trunk version of Recess and I am getting a "Resource not found" error when trying to browse the Model and Controller reflection links in the RecessTool application. I can use my apps routes just fine tp create model objects, get them by Id, etc. I just can't reflectively look at my model and controllers in the RecessTool. Any help would be appreciated. I have included the error text below.
------------------------------
Resource does not exist.
Location: Line 41 of /home/winbushf/public_html/recess/recess/recess/framework/DefaultPolicy.class.php
* 37: } else {
* 38: throw new RecessResponseException('METHOD not supported, supported METHODs are: ' . implode(',', $routeResult->acceptableMethods), ResponseCodes::HTTP_METHOD_NOT_ALLOWED, get_defined_vars());
* 39: }
* 40: } else {
* 41: throw new RecessResponseException('Resource does not exist.', ResponseCodes::HTTP_NOT_FOUND, get_defined_vars());
* 42: }
* 43:
* 44: $this->controller = $controller;
* 45:
* 46: return $controller;