<?xml version="1.0"?>
<configuration>
  <system.serviceModel>
    <behaviors>
      <endpointBehaviors>
        <behavior name="WorkflowDesignerServiceBehavior">
          <enableWebScript />
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <services>
      <service name="CMS.WebServices.WorkflowDesignerService">
        <endpoint address="" behaviorConfiguration="WorkflowDesignerServiceBehavior" binding="webHttpBinding" contract="CMS.WebServices.IWorkflowDesignerService" />
      </service>
    </services>
  </system.serviceModel>
  <system.web>
    <authorization>
        <deny users="?"/>
    </authorization>
  </system.web>
  <location path="Services/WorkflowDesignerService.svc">
      <system.web>
          <authorization>
              <deny users="?"/>
          </authorization>
      </system.web>
  </location>
  <location path="CMSPages">
      <system.web>
          <authorization>
              <allow users="*" />
          </authorization>
      </system.web>
  </location>
</configuration>
