Skip to Main Content

Java Programming

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

JAVA 6 compatibility with Castor and Xerces

807580May 14 2007 — edited Aug 18 2009
Hi Guys,
while moving to JAVA 6, I encoutered some problems that might be related to compatibility issues between JAVA 6, Castor and Xerces.

The jars am already using and suspecting their compatibility issues with JAVA 6 are:
xercesImpl.jar, castor-0.9.9.1-common.jar, and castor-0.9.9.1-xml.jar.
While trying to marshall my application objects using castor (The thing that was working just fine with JAVA 5) I got the following exception:
Exception in thread "AWT-EventQueue-0" java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z

            at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)

            at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)

            at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)

            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(TransformerImpl.java:663)

            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:709)

            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:313)
So I thought to post this issue here and see if I can get some help from anyone of you out there.

Thanks a bunch,

Rawad.

Comments

Answer

Likely your application is coded to change the mouse pointer to "busy" and you are not setting back to the default.  Example:

SET_APPLICATION_PROPERTY (CURSOR_STYLE, 'BUSY');

It is also possible (although unlikely) that there is a Java bug causing this.  Unfortunately because you are using Forms 10 (obsolete for many years) you really don't have many options to upgrade Java versions.  Also, if you are not already using a patched version of Forms 10 (10.1.2.3), I recommend doing so.

I would be interested in knowing if the same reproduced in version 12.2.1.2 using the latest Java version (8u144).

Marked as Answer by user501532 · Sep 27 2020
user501532

Thx. The aplication property worked fine.

1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 15 2009
Added on May 14 2007
6 comments
423 views