Wednesday, November 25, 2020

Episerver find - Developer Demo Services (Unauthorized)

 When running the scheduled job you get something like: {"status":401,"error":"Unauthorized"}


Solution:

Remove all entries from the Episerver find index job in: the tblScheduledItemLog db table. You can get the  GUID id of the job in the table tblScheduledItem.

SQL  

  DELETE FROM [YOURDB].[dbo].[tblScheduledItemLog]

WHERE fkScheduledItemId = 'YOUR GUID'

Friday, November 6, 2020

C#, Config: Config Sections - Section type meaning.

 <section name="example" type="Examples.Configuration.ExampleSection, 

                                  Examples.Configuration" />


 <section name="example" type="{Hela adressen till classen inkl namespace}, 

                                  {Namespace där klassen ligger}" />