Tibor Kovacs - 2009-09-10

Hello,
sorry if it's a repost.

I do some tests using the .Net build 1.9-beta6 package, downloaded from here.
The following code keeps throwing nullreference exception:
  ODBServer server = ODBFactory.OpenServer(8000);
  server.AddBase("a", "a.odb");

It says, that in AddBase a member of ODBServer is null. After a while I've racked down the problem to the file NeoDatis\Odb\Impl\Main\ODBDefaultServer.cs.
There are these commented lines, which seem to leave the inner member "uninitialised":

public ODBDefaultServer(int port)
{
//this.serverImpl = new NeoDatis.Odb.Impl.Core.Server.Layers.Layer3.Engine.ODBServerImpl
    //(port);
}

So I can't use the client/server mode, although this would be the purpose of it all for me...

Is this intentionally commented out?
I can't use the source, because my VisualStudio doesn't open the solution.

Thanks in advance.