Al Hubberman wrote: > We have an issue in Coldfusion 7 where to make a long story short we > need to download the itext source, refactor so we have different package > names and then need to jar it up and drop it in Coldfusion...there are > numerous reasons which are not necessary to explain but when I download > the current source on the truck it won't compile. What it appears to me > is that there are some classes with Java 6 requirements. I tried to > down;oad the 15 source on the appropriate branch and still I see compile > errors for the same code. Am I missing something?
If you look at the ANT scripts, you'll see that iText is now split up in different jars: core, rtf, toolbox and RUPS. core and rtf compile with JDK 1.4, but the toolbox and RUPS need Java 5. Fortunately, you don't need toolbox and RUPS. > The issues are in: > > toolbox/AbstractTool.java > toolbox/Versions.java > > toolbox/swing/CustomDialog.java > toolbox/swing/FileList.java You can safely throw away everything under toolbox and RUPS; these are Swing applications, you don't need them in CF. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info ------------------------------------------------------------------------------ Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Creative Lab, Visual Complexity, Processing, & iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian Group, R/GA, & Big Spaceship. http://www.creativitycat.com _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.1t3xt.com/docs/book.php Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/
