2

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

skaffman
  • 398,947
  • 96
  • 818
  • 769

1 Answers1

0

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;
Bjarki Heiðar
  • 3,117
  • 6
  • 27
  • 40