You are here: Configuration > Server Configuration

Server Configuration

The server-configuration applies to the db4o-server. All the server specific configuration is directly on the client configuration interface.

You can also configure the common-, file-, id-system- and the network-settings for a server.

Server Socket Timeout

Configure how long it takes, before an inactive connection is timed out.

IServerConfiguration configuration = Db4oClientServer.NewServerConfiguration();
configuration.TimeoutServerSocket = (10 * 60 * 1000);
ServerConfigurationExamples.cs: configure the socket-timeout
Dim configuration As IServerConfiguration = Db4oClientServer.NewServerConfiguration()
configuration.TimeoutServerSocket = (10 * 60 * 1000)
ServerConfigurationExamples.vb: configure the socket-timeout