H?rsszegi Tibor wrote: > > was trying to use your editor for (JavaDoc) editing purposes, but it somewhat > fails to load the following (Sun's suggested format) .java file. > > Name: package-info.java > Content: > /** > * This is the overview file for the Extrema driver package. > * <p> > * > * The Extrema package contains the following drivers: > * scanner, internal printer, HCR360 card reader and a separate barcode > reader. > * > * <IMG src="doc-files/essnet_logo.gif" alt="Extrema drivers overview"/> > */ > package se.scigames.driver.extrema; >
It is the XML-style end of empty element "/>" which causes XXE to fail loading your file. Replace "/>" by ">" and it'll work fine. We'll fix this bug for next release.

