I am working with a solution using EPiserver Find. In the content I have some pages with some unusual characters like: š á č ů.
When I run the EPiServer Find Content Indexing Job I get the error message:
An exception occurred while indexing (Content): ArrayIndexOutOfBoundsException[null].
When I remove the content with those characters the job runs just fine.
I tried to index a custom object where "SearchText" and "SearchTitle" contains the special characters, for example:
var item = new MyObject()
{
SearchSection = "MySection",
SearchHitUrl = "http://www.google.com",
SearchSummary = "This is summary text",
SearchText = "lorem ipsum š á č ů ",
SearchTitle = "MyTitle",
SearchUpdateDate = DateTime.Now
};
client.Index(item);
This crashes with the following error:
The remote server returned an error: (500) Internal Server Error. RemoteTransportException[[euw1bfinddev02esd01][inet[/10.54.4.201:9300]][index]]; nested: ArrayIndexOutOfBoundsException;
After some testing I realize that its actually only the š character that gives the error. The string "lorem ipsum á č ů". Works fine, however "foo š" blows up.
Does anyone have an Idea what the problem with š is?
Hi!
I am working with a solution using EPiserver Find. In the content I have some pages with some unusual characters like: š á č ů.
When I run the EPiServer Find Content Indexing Job I get the error message:
When I remove the content with those characters the job runs just fine.
I tried to index a custom object where "SearchText" and "SearchTitle" contains the special characters, for example:
This crashes with the following error:
After some testing I realize that its actually only the š character that gives the error. The string "lorem ipsum á č ů". Works fine, however "foo š" blows up.
Does anyone have an Idea what the problem with š is?