Project

General

Profile

Errores #126

Updated by Jesús Freire about 7 years ago

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)

Back