To whom it may concern,

I am trying to see what stuff I can do with the server class and keep running into a org.basex.core.BaseXException: java.nio.channels.OverlappingFileLockException error. With the following code

session.setOutputStream(System.out);
session.execute("XQUERY doc('/home/jricles/Desktop/adsss.xml')");
session.query("doc('adsss')/*").execute();
System.out.println();

To figure out the problem and correct it through trial and error to learn how to use BaseX in java better, I am trying to use the following class from the import server.* statement I imported at the beginning of the code http://docs.basex.org/javadoc/org/basex/server/LockingTest.html. However it gives me an error that this class does not exist in the Server import. I am curious if this javadoc is out of date, or if it is incorrect in something that I might be doing in my code.

Thanks,

Jason Ricles