Actions
Errores #126
closedExtend SESI.URIPREG to 250 characters
Start date:
05/01/2018
Due date:
06/06/2018
% Done:
100%
Estimated time:
1:00 h
Puntos de historia:
0
Description
When PasarelaServlet initialize a session, it's throwing the following exception:
Atributo obligatorio
java.beans.PropertyVetoException: URIPREG DEMASIADO LARGO (MAX.: 30, VALOR: '/selene-j2ee-webapp/PasarelaServlet')
at net.bersus.selene.clases.aut.Sesion.setUripreg(Sesion.java:3592)
So, it's neccesary to extend the column URIPREG of the class SESI.
250 character would be a good size for this column.
Change it into OBJM and generate new wrappers for the class SESI.
Change the size of the column into the database with the following SQL instruction:
alter table sesi alter column uripreg type character varying(250)
Actions