/
Set up Anonymous endpoint in Creatio (Calls)

Set up Anonymous endpoint in Creatio (Calls)

  1. In folder ..\Terrasoft.WebApp\ServiceModel create file VvtTalkDeskWebHookHandler.svc and add the following code

    <% @ServiceHost Service = "Terrasoft.Configuration.VvtTalkDeskWebHookHandlerNamespace.VvtTalkDeskWebHookHandler" Debug = "true" Language = "C#" %>

     

  2. In the files ..\Terrasoft.WebApp\ServiceModel\http\services.config and ..\Terrasoft.WebApp\ServiceModel\https\services.config add the following block <services>:

    <services> ... <service name="Terrasoft.Configuration.VvtTalkDeskWebHookHandlerNamespace.VvtTalkDeskWebHookHandler"> <endpoint name="VvtTalkdeskChatWebhookHandlerEndPoint" address="" binding="webHttpBinding" behaviorConfiguration="RestServiceBehavior" bindingNamespace="http://Terrasoft.WebApp.ServiceModel" contract="Terrasoft.Configuration.VvtTalkDeskWebHookHandlerNamespace.VvtTalkDeskWebHookHandler" /> </service> </services>

     

  3. In the file ..\Terrasoft.WebApp\Web.config add block<location> to section <configuration>:

    <configuration> ... <location path="ServiceModel/VvtTalkDeskWebHookHandler.svc"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> ... </configuration>

     

  4. In the file ..\Terrasoft.WebApp\Web.config change  attribute 'value' in the section<appSettings>:

    <configuration> ... <appSettings> ... <add key="AllowedLocations" value="[previous values];ServiceModel/VvtTalkDeskWebHookHandler.svc" /> ... </appSettings> ... </configuration>

     

  5. Reload the application in IIS

Configuration for .Net6

  1. Add the following block to the AnonymousRoutes block of the appsettings.json file

"Terrasoft.Configuration.VvtTalkDeskWebHookHandlerNamespace.VvtTalkDeskWebHookHandler": [ "/ServiceModel/VvtTalkDeskWebHookHandler.svc" ]

Related content