|
|
Browse by Tags
All Tags » Java » network (RSS)
-
Dear Forum,
Having:
ObjectContainer containerA= Db4o.openClient(REMOTE_CREDENTIALS_REMOVED);
ObjectContainer containerB=objectserver.openClient();
Doing now:
ReplicationSession replication = Replication.begin(containerA,containerB);
Brings:
Stack Trace:
java.lang.ClassCastException: ...
-
Hi all
i have a remote server and i want to access it by it's IP address.
my code is like thisObjectContainer db=Db4o.openClient(''192.168.0.10'',1212,''admin'',''123456''); unfortunately my program wait in that line for ever.
i try to work with it in local server computer with host name ''localhost'' and everything is ...
-
Hello all,
i'm newbie to db4o (and java for this matter).
i was trying to work some queries using the ObjectContainer.query method passing a predicate like this:
java.util.List <Pilot> pilots = objectContainer.query(new Predicate<Pilot>(){ public boolean match(Pilot pilot) { return ...
|
|
|