This 80 character limit didn't exist on the V6 CMA, so all the company websites that were developed ( > 50) have many pages with references to static files with big file names, lots and lots of users created links pointing to these files.
The company recently upgraded to V8 and now we have 80 character limit for static files (that exists since V7), we can't change all the hardcoded links that were created by users (e.g., Hardcoded urls created with the Ephox editor) to point to new shorter file names and we can't let the users face failures like this:
2012-04-12 11:50:26,402 | ERROR | web.spring.BasicHandlerAdapter | | Failure occurred handling request [[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [com.vignette.ui.web.spring.BasicHandlerAdapter]
com.vignette.ui.core.UIException: An error occurred while creating file "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.TXT". Make sure that the placement path doesn't contain any illegal character.
....
Caused by: com.vignette.as.client.exception.ApplicationException: 04/12/2012 11:50:26:402, Error 0 (Unknown), Message 026-120-0019: 04/12/2012 11:50:26:402, Error 12 (CMSException), Message 000-000-0001: Object name of this type is internally restricted to a maximum length of 80 characters. name=Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.TXT, length=83
We don't want to present problems to our user experience, do you know if there's a way to avoid this 80 characters limit?