Hi Nikolai. Nikolai Ruben Malchow: > i am currently working on a batik app that will be used within a web > application. it's running in bea weblogic 8.1 and jdk 1.4.2. so xalan 2.2 > (inlcuded in the jre) and xerces 2.1 are available. now, the existing > webapp does a lot of xml stuff. does anybody know enough about the > differences between the various versions to tell me what kind of problems > (if any) might be caused by deploying the xml-apis-dom3.jar from the batik > dist within that webapp's context? is it likely that this will make the > whole thing go boom? what kind of things should i look for in order to > minimize the danger of version conflicts?
It should be OK. Since JDK 1.4.2 contains only the DOM Level 2 versions of the interface .class files, they won’t be overriden by the ones included in xml-apis-dom3.jar. Even if they were (e.g. by putting it in the bootclasspath or the official override location or whatever it is called), you shouldn’t have any problems. How about you try it and see how it goes? :) Cameron -- Cameron McCormack, http://mcc.id.au/ xmpp:[EMAIL PROTECTED] ▪ ICQ 26955922 ▪ MSN [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
