RecomputeFuzzyIndexStatistics method not working with GroupShare 2017 TMs

I developed an application that imports and re-indexes Server TMs.

Calling the method

 

selectedTm.RecomputeFuzzyIndexStatistics();

 

throws a "Method not supported" error.

 

When running my code from a Studio 2017 Client PC against a GroupShare 2015 Server it is fine.

The error is thrown when running against a GroupShare 2017 Server.

Parents Reply Children
  • I tried to work around this by using the GroupShare Kit just for replacing the RecomputeFuzzyIndexStatistics method from the Studio API. The rest (i.e. connecting to the server and doing TM imports, exports, etc.) I am still doing with the Studio API.

    However, when I add the GroupShare Kit NuGet to the project the following line throws an error:

    TranslationProviderServer connection = new TranslationProviderServer(new Uri("server name"), false, "sa", "sa");

     

    Roughly translated as: the file or assembly xxx or a dependency was not found. The manifest definition of the assembly does not match the assembly reference. Could it be that the Studio and the REST API do not get along with one another? I would rather not have to re-develop the entire application just to replace the one line that uses the RecomputeFuzzyIndexStatistics method.