Quite sure that your model does not validate.
Try adding an errorAction to your controller and print out the error-information in the request:
public function errorAction() {
\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($this->arguments->getValidationResults());
}
Matthias