Notes when installing the connector for the first time

The name of the full installation package for Sitecore 10 is SDL TMS Sitecore Connector10 - Full.zip.

When you install the connector for the first time, the only items that you may already have on your machine are Newtonsoft.Json.dll or System.IO.Compression.dll. If this is the case, when prompted to overwrite either one of these files, select No. Otherwise, the Newtonsoft DLL file for the Sitecore instance will be overwritten, taking down the server. The only solution to this is to revert to the original DLL file.

Also, a change in the web.config file of the Sitecore CMS installation is required for Newtonsoft. The message displayed when the Newtonsoft.Json.dll already exists means that the file is already in the /bin folder of your Sitecore instance. In this case, you should add the Newtonsoft.Json.dll file used by the RWS package – version 6.0.0 – to bin/Sdl, for example. Then, change the web.config file as follows:
	<dependentAssembly>
		<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
		<codeBase version="12.0.0.0" href="Newtonsoft.Json.dll" />
		<codeBase version="6.0.0.0" href="bin/Sdl/Newtonsoft.Json.dll" />
	</dependentAssembly>
</assemblyBinding>
In this case, the 12.0.0.0 represents the current DLL file used by the Sitecore instance in the /bin folder.
Once you have finished the installation, restart the Sitecore client and the Sitecore server.A screen shot in which the options to restart the Sitecore client and the Sitecore server are both selected.