SNOB - A SNOMED Browser
Connecting to SNOB Server
SNOB Server communicates over TCP/IP. Your application should open a socket to the IP address of your SNOB Server on port 5408. The c# example below assumes that your SNOB Server is running on the same machine as the client.
TcpClient tcpClient = new TcpClient("127.0.0.1", 5408);