|
From: Ladislav U. <lad...@us...> - 2005-10-18 14:51:58
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv947/hk/hku/cecid/phoenix/message/handler Modified Files: DbTableManager.java Log Message: We did have and issue related to the length of the DB field ATTRIBUTE_REMOTE_HOST in hermes database. We use sub domains in our project. It means that total length of host name is longer than 32 characters. We fixed the problem by expansion to 127 characters Index: DbTableManager.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler/DbTableManager.java,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** DbTableManager.java 16 Aug 2005 09:35:21 -0000 1.42 --- DbTableManager.java 18 Oct 2005 14:51:50 -0000 1.43 *************** *** 1174,1178 **** private static final DbColumn COLUMN_REMOTE_HOST = ! new DbColumn(ATTRIBUTE_REMOTE_HOST, Types.VARCHAR, 32, false); private static final DbColumn COLUMN_STATUS = --- 1174,1178 ---- private static final DbColumn COLUMN_REMOTE_HOST = ! new DbColumn(ATTRIBUTE_REMOTE_HOST, Types.VARCHAR, 127, false); private static final DbColumn COLUMN_STATUS = |