// names can not exceed the maximum character length specified by the
// UDDI specification (v2.0 specifies a max character length of 255). This
// value is configurable in jUDDI.
int maxNameLength = Config.getMaxNameLengthAllowed();
if (tModelName.length() > maxNameLength)
throw new NameTooLongException("find_tModel: "+
"name="+tModelName+", "+
"length="+tModelName.length()+", "+
"maxNameLength="+maxNameLength);
}