I am using the XML:DB API within Java to connect to an instance of the 'eXists' XML database which I have running on my local machine. However, I'm having problems when trying to access files within a particular collection I have extracted. The collection definitely contains resources- I get the following error:
*
Exception in thread "main" java.lang.NoSuchMethodError: org.apache.xmlrpc.util.HttpUtil.encodeBasicAuthentication(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; at org.apache.xmlrpc.DefaultXmlRpcTransport.setBasicAuthentication(DefaultXmlRpcTransport.java:98) at org.apache.xmlrpc.XmlRpcClient.execute(XmlRpcClient.java:173) at org.exist.xmldb.RemoteCollection.getResource(RemoteCollection.java:340) at accessDB.main(accessDB.java:36)
*
I have the xmlrpc-2.90.1.jar in my build path, and according to JarFinder this should contain org.apache.smlrpc.util.HttpUtil.
Below is the code I am using, along with the rogue line:
> import org.xmldb.api.base.*; import org.xmldb.api.modules.*; import
> org.xmldb.api.*; import javax.xml.transform.OutputKeys; import
> org.exist.xmldb.EXistResource;
>
> public class accessDB {
>
> @SuppressWarnings("unchecked") public static void main(String args[]) throws Exception {
>
> final String driver = "org.exist.xmldb.DatabaseImpl";
> final String URI = "xmldb:exist://localhost:8080/exist/xmlrpc";
>
> Class cl = Class.forName(driver);
> Database database = (Database) cl.newInstance();
> database.setProperty("create-database", "true");
> DatabaseManager.registerDatabase(database);
>
> Collection col = null;
> try
> {
> col = DatabaseManager.getCollection(URI + "/my_subset");
>
> XQueryService xqs = (XQueryService)col.getService("XQueryService", "1.0");
> xqs.setProperty("indent", "yes");
> //+++++++Following line causes error:
> XMLResource reds = (XMLResource) col.getResource("1311609018-tmo.owl");
Could anyone help with this?