November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
The IndexingService endpoint you mention is the built in EPiServer.Search module endpoint, which if active EPiServer will use to index the content itself. It creates a lucence index in the appdata folder. This is then used by the search boxes in the CMS page hierarchy panel within the CMS editor and in the Block and Media panels also.
This can be used for your search feature. It has its own API if you want to explore that option.
http://world.episerver.com/documentation/Items/Developers-Guide/Episerver-CMS/75/Search/Search/
Otherwise if you still want to use solr 5 perhaps a scheduled job running in the Site could perform the work you intend to do in the console app ? You could schedule it to run or run it manually.
regards,
Danny
I would also recommend pushing the data instead. You can do this by listening to content events, e.g. when content is published. Would also recommend having a scheduled job too, since there aren't events for every operation an editor can do in Episerver, e.g. changing access rights recursively.
This will keep the index more up-to-date, than pulling data once in a while.
This is how Find works.
Hi Everyone,
My company is using Episerver 8 and it works well for us. We currently don't have it in the budget to get Episerver Find, but are looking to pull data from Episerver through a console app and use that to create a seperate solr 5 index using that data.
My issue is, I don't see any way of pulling data outside Episerver without using Episerver find. I've found the service at, /IndexingService/IndexingService.svc, but am getting the error..
Service
Endpoint not found.
Is this the service I should use for this? If so, how do I fix this error?
-Paul