-
Hello. I have some questions:
1. How can I check if user with given name exists? This code doesn't work:
User userJastorObj = BOCAFactory.getUser(userURI, systemGraph.getMetaDataGraph());
if (userJastorObj != null) ...
2. How can I check is given user password valid without getting DatasetService with given username and password?
3. How can I delete existing user or graph?
Thank...
2007-07-02 14:07:14 UTC by dmitry-jusper
-
While perusing the Boca-2.4 code I found the following which looks wrong (but I didn't look that deeply to see if its intentional):
package com.ibm.adtech.boca.model.proxy
class NamedGraphWithMetaData
The second line of the following method should probably call BocaGraph with metadataGraphUri instead of namedGraphUri
public static NamedGraphWithMetaData
2007-06-28 17:58:41 UTC by cawelty
-
It seems there are a number of libs missing compared to lib path on my machine. What version of maven are you running? You could also try a clean build. My lib directory looks like this:
abdera-client-0.2.0-incubating-20061206.000605-1.jar
abdera-core-0.2.0-incubating-20061206.000605-1.jar
abdera-extensions-0.2.0-incubating-20061206.000605-1.jar...
2007-02-28 13:39:10 UTC by mroyibm
-
It's true geronimo-j2ee-management_1.0_spec-1.0.jar is not in the the lib directory.
C:.
| LICENSE.txt
+---bin
| | boca-derby.bat
| | boca-hsql.bat
| | boca-mysql.bat
| | boca-postgres.bat
| | boca.bat
| | start-derby.sh
| | start-hsql.sh
| | start-mysql.sh
| | start-postgres.sh
| | start.sh
| | stop.sh
| |
| \---db2
|.
2007-02-28 09:35:55 UTC by bigbangk
-
There is my code (similar to example)
package net.pleso.boca_benchmark;
import java.io.FileInputStream;
import java.util.Date;
import java.util.Properties;
import org.openrdf.model.URI;
import com.ibm.adtech.boca.client.DatasetService;
import com.ibm.adtech.boca.model.INamedGraph;
public class RemoteGraphWebService {
public static void main(String[] args) throws Exception {.
2007-02-27 21:41:50 UTC by nobody
-
Can you send a listing of the lib directory under your boca-2.1 directory. Mainly looking to make sure you have the geronimo-j2ee-management_1.0_spec-1.0.jar jar in the the lib directory since that provides the class in question.
2007-02-27 19:27:52 UTC by mroyibm
-
Hi
I want to try Derby with boca 2.
But I have the next error :
C:\boca-2.1\bin>C:\boca-2.1\bin\boca-derby.bat
Loading properties:C:\boca-2.1\conf\BocaServer.properties.derby
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source...
2007-02-27 18:21:54 UTC by bigbangk
-
Without seeing the boca server log file, it looks at first glance that this is a timeout on the replicate. Looking at the example code, the parser is creating a new transaction for every triple in the owl file, so the server has to process each of those changes as an atomic transaction. A better approach would be to do the begin and commit during the startRdf() and endRdf() like:
public void...
2007-02-26 18:09:16 UTC by mroyibm
-
Reading rdf from a owl file, I have an error when I tried to push all the transactions to server (datasetService.getDatasetReplicator().replicate(true);)
Please find attached the example code and data that I use to produce this error:
Exception in thread "main" com.ibm.adtech.boca.common.exceptions.TransportExcept
ion: ErrorCode[4097:10] Unknown AXIS error:; nested exception is...
2007-02-26 17:36:21 UTC by nobody
-
Hi everyone,
The primary means of support for the IBM Semantic Layered Research Platform is a mailing list rather than this help forum. Please subscribe to the mailing list and use it for support questions and discussions. The mailing list can be found at:
http://lists.sourceforge.net/lists/listinfo/ibm-slrp-general
(This forum is not monitored regularly, so replies to questions...
2007-02-07 22:02:33 UTC by figtree1313