November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
If I am not mistaken, I think you need to enable basic authentication for this to work. I remember awhile back running into an issue similar, if not the same where i had to enable basic authentication. Give that a whirl and see if that eases the pain.
No, I still get this after enabling Basic authentication in IIS:
Could not find a base address that matches scheme https for the endpoint with binding WebHttpBinding. Registered base address schemes are [http]..
You have to set anonymous access on that file (can be done in IIS or in web.config)
Here is a good blog post on how to set this up
http://sveinaandahl.blogspot.se/2013/06/how-to-install-episerver-search-for.html
Thanks, that in combination with removing <security mode="Transport"> did the trick!
Hi! I've installed the Indexing Service and it works in my dev environment where we have Forms Authentication. However, in our test environment where we use Windows Authentication I get the following error when browsing to the service URL:
[ServiceActivationException: The service '/IndexingService/IndexingService.svc' cannot be activated due to an exception during compilation. The exception message is: The authentication schemes configured on the host ('IntegratedWindowsAuthentication') do not allow those configured on the binding 'WebHttpBinding' ('Anonymous'). Please ensure that the SecurityMode is set to Transport or TransportCredentialOnly
If I add <security mode="Transport"> to the binding I get the following error:
[ServiceActivationException: The service '/IndexingService/IndexingService.svc' cannot be activated due to an exception during compilation. The exception message is: Could not find a base address that matches scheme https for the endpoint with binding WebHttpBinding. Registered base address schemes are[http]..]
Is there a way to use the Indexing Service without having to enable Forms Login or https?