Hello. I am trying to insert permission into a table. The descriptor is:
<table name="permisos"> <keys> <key name="usr_id" type="long"> <mode name="request-attr" type="all" parameter="org.apache.cocoon.components.modules.output.OutputModule:usuarios.usr_id[0]"/> </key> <key name="obj_id" type="long" set="master"> <mode name="request-param" parameter="obj_id" type="all"/> </key> </keys> </table> The table-set is: <table-set name="usuario_y_permisos"> <table name="usuarios"/> <table name="permisos" others-mode="request-attr"/> </table-set> The error I got is in the sitemap.log: Thread-4/DatabaseAction: query: INSERT INTO permisos (usr_id, obj_id) VALUES (?, ?) Thread-4/DatabaseAction: Trying to set column permisos.usr_id from request-attr using getAttribute method Thread-4/DatabaseAction: Setting column permisos.usr_id [0] 5 Thread-4/DatabaseAction: Trying to set column permisos.obj_id from request-param using getAttributeValues method Thread-4/DatabaseAction: Setting column permisos.obj_id [0] 3 Thread-4/DatabaseAction: Setting column permisos.obj_id [1] 2 Thread-4/DatabaseAction: ====> row no. 0 Thread-4/DatabaseAction: Setting column permisos.usr_id[0] to 5 Thread-4/DatabaseAction: Rolling back transaction. Caused by null What I am doing wrong? Regards, Antonio Gallardo --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>