|
|
Using XPath from a Java AppletThe Java XPath API described on the previous pages is available from applets, at least with the Java plugin. In practice, I've found that "out of the box", using XPath from a remotely-loaded applet is unworkably slow (at least as of the Java 6 plugin update 13). I've found a nasty workaround that appears to work, but which involves signing the jar. The workaround is thus as follows:
Setting this property explicitly prevents the XPath API from attempting to hit the network in order to resolve it on every call to XPath.evaluate(), which appears to be the cause of the horrifically slow performance of this call. Unfortunately, signing the jar is then necessary in order to allow the system property to be set. Did this article answer your question? If not, visit the new
Javamex discussion forums to ask your question.
Copyright © Javamex UK 2009. All rights reserved. |