SUMMARY
This guide is for users of Microsoft SQL Server 2000 Windows CE Edition version 1.1 (SQL Server CE) who want to use SQL Server CE Relay to synchronize their mobile database. Relay enables mobile users to update their SQL Server CE data without the use of a network connection on their device. You can communicate with a remote SQL Server system by connecting through a serial, IR, or USB connection to a networked desktop.
back to the top
How to Run Relay
You can configure Relay to start automatically or manually. You run Relay on your networked desktop system, which has a connection to your SQL Server database. To run Relay, follow these steps:
- At the command prompt, change to the C:\Program Files\Microsoft SQL Server CE\Relay folder by typing:
cd "\Program Files\Microsoft SQL Server CE\Relay " (without the quotation marks)
- At the prompt type
SSCERelay /clientport <port number> /servername <name> /serverport <server port number>
where:
<port number> is the port on which the mobile device listens.
<name> is the server or proxy server.
<server port number> is the port on which the desktop system listens.
back to the top
How to Configure Relay to Run Automatically
You configure Relay to run automatically by adding the
/register parameter to the end of the command line.
At the command prompt type:
SSCERelay /clientport <port number> /servername <name> /serverport <server port number> /register
where:
<port number> is the port on which the mobile device listens.
<name> is the server or proxy server.
<server port number> is the port on which the desktop system listens.
NOTE: The
/register option registers Relay to run every time an ActiveSync connection is made.
back to the top
How to Stop Relay
You can stop Relay from running by using the
/stop parameter at the command prompt.
At the command prompt, type:
SSCERelay /stop
back to the top