If your network has a proxy server you may need to configure Data Sync and Ouvvi to use your Proxy Server.
The .NET framework provides for a Proxy server configuration as part of the application configuration see http://msdn.microsoft.com/en-us/library/kd3cf2ex(v=vs.100).aspx.
You will need to apply the configuration to all the .config files in your Data Sync Install Directory C:\Program Files\Simego\Data Synchronisation Studio 3.0
and to the Ouvvi Service C:\Program Files\Simego\Ouvvi\Service\Simego.Console.Service.exe.config
and Ouvvi Web C:\Program Files\Simego\Ouvvi\Web\web.config
Example proxy server settings specifying a Proxy Server Address and to use the current user credentials:
<configuration>
<system.net>
<defaultProxy useDefaultCedentials="true">
<proxy uesystemdefault="True" proxyaddress="http://my-proxy-name:80" bypassonlocal="True" />
</defaultProxy>
</system.net>
</configuration>
Note: When you upgrade your installation these setting files will be overwritten by the installer since they are part of the install you should make a note of the procedure to update these for future reference.