Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 VvtTwilioServiceHelper.svc and add the following code

    Code Block
    <% @ServiceHost Service = "Terrasoft.Configuration.VvtTwilioServiceHelperNamespace.VvtTwilioServiceHelper" Debug = "true" Language = "C#" %>

  2. In the files ..\Terrasoft.WebApp\ServiceModel\http\services.config

...

  1.  and ..\Terrasoft.WebApp\ServiceModel\https\services.config add the following block <services>:

    Code Block
    <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>

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

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

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

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

  4. Reload application in IIS