FAST ESP 5.3 SP4 - Turkish tr-tr fails

194 Views Asked by At

Im using dotnet search api for FAST ESP 5.3. Everything works fine except for culture tr-tr i.e cultureid=1055.

Getting exception as "Error parsing information" on executing the below line

 qr = view.Search(query);

Can anybody please throw some light on this issue?

What & where to check whether my installed FAST ESP has turkish(tr-tr) support?

Your help is highly appreciated.

Thanks, Arun

1

There are 1 best solutions below

0
user1084158 On

Finally resolved the issue as below through MS support:

CultureInfo originalCulture = Thread.CurrentThread.CurrentCulture;
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
qr = view.Search(query);
Thread.CurrentThread.CurrentCulture = originalCulture;