#
# server2-config,v 1.1 1994/01/28 17:05:31 franktor Exp
#
# This is a sample configuration file for the SR High-level API server.
# To read it, specify "-config <path_to_this_file>" as argument to
# the high-level API server.
#
# Syntax of format is:
#
# --- Syntax definition starts after this line ---
# localname <string:name of address object>
#           [Note that you can have a single '%s' in the address, which
#            will be replaced by the local hostname]
#
# server <string:name of server>
#   method [tcpip|pipe]
#   <if tcpip:>
#     ip_address <string|ip-number>
#     ip_port    <decimal>
#   <if pipe:>
#     program <string>				/* Unsupported as of now */
#   handle_several_clients [yes|no]
#   max_result_sets <decimal>			/* Unsupported as of now */
#   query_syntax [RPN] [ISO8777]		/* Unsupported as of now */
#   supported_syntaxes				/* Unsupported as of now */
#     <record-syntax>,<transfer-syntax>...
#     ...
#   end
#   can_interrupt [yes|no]			/* Unsupported as of now */
#   databases
#     <string:name>
#     ...
#   end
# end
# ...
# --- Syntax definition ends before this line ---
#
# "..." means that more elements, similar to the previous, can be appended.
#
# This is a working example of a config-file:

localname "@c=NO@o=Universitetet i Oslo@cn=%s"
#localname "gandalf.uio.no"

server gandalf
  method tcpip
  ip_address gandalf.uio.no
  ip_port 2400
  supported_syntaxes
    1.0.10163.5.12
#   1.0.10163.5.99,1.0.2709.1.1	# 99 isn't registered; used for test purposes
  end
  databases
    isds
    samper
  end
# handle_several_clients yes
end

# UBO:BOK alfa-server

server kari
  method tcpip
  ip_address kari.uio.no
  ip_port 2015			# bruk 2015 for testing
  databases
    ubobok
    nota
    sambok
  end
  supported_syntaxes
#   1.0.10163.5.12
    1.0.10163.5.99,1.0.2709.1.1	# 99 is abstract syntax for 2709.
  end
end

# Kjetil's test-server:

server kjetiltest
  method tcpip
  ip_address kari.uio.no
  ip_port 2010
  databases
    kjetil
  end
  supported_syntaxes
    1.0.10163.5.99,1.0.2709.1.1	# 99 is used for test purposes
  end
end
