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>