Anonymous endpoint settings in Creatio

In order for the Twilio connector to work, you will need to set up the anonymous endpoint on your Creatio server using the instruction below

Set up can be performed by the system administrator. If you are using the cloud version, please contact the Creatio support team to complete the set up.

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

    <% @ServiceHost Service = "Terrasoft.Configuration.VvtTwilioServiceHelperNamespace.VvtTwilioServiceHelper" 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.VvtTwilioServiceHelperNamespace.VvtTwilioServiceHelper"> <endpoint name="VvtTwilioServiceHelperEndPoint" address="" binding="webHttpBinding" behaviorConfiguration="RestServiceBehavior" bindingNamespace="http://Terrasoft.WebApp.ServiceModel" contract="Terrasoft.Configuration.VvtTwilioServiceHelperNamespace.VvtTwilioServiceHelper" /> </service> </services>

     

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

    <configuration> ... <location path="ServiceModel/VvtTwilioServiceHelper.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>:

     

  5. Reload the application in IIS

Configuration for .Net6

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

Add label