Server Configuration - Advanced Design and Setup - Foundation 23.2 - Foundation 23.2 - Ready - Content Composer - external

Content Composer Advanced Design and Setup

Platform
Content Composer
Product
Advanced Design and Setup
Release
Foundation 23.2
License

The specific functions of this service are provided by the service Composer.MWS, which is installed as a Windows service as part of the Content Composer standard installation.

Individual settings for the server endpoint are stored in the file Composer.MWS.exe.config.

The following entry is required in the appSettings element:

<appSetting>
...
 <add key="disableDebugNamedPipe" value="1"/>
...
</appSetting>

In the following example, the Debug service runs on the computer with the network name Hyland and uses the IP port 8012:

<system.serviceModel>
 <services>
   ...
   <service name="ComposerSuite.Runtime.DebugService">
     <endpoint
         address="http://Hyland:8012/RemoteDebugger"
         binding="wsDualHttpBinding"
         bindingConfiguration ="DebugBinding"
         contract="ComposerSuite.Runtime.Types.IDebugService"/>
   </service>
  ...
 <services>
<system.serviceModel>