Documentation Center

Connecting to the Content Manager (Core Service)

Audience Manager and Outbound E-mail are configured by default to communicate with the Core Service using the NetTcpBinding binding. You can change the configured endpoint to use wsHttpBinding binding in the OutboundEmail.xml configuration file.

Procedure

  1. Open OutboundEmail.xml located by default in the config subdirectory of your Content Manager root location in a plain-text editor or XML editor.
  2. Locate the <System> section. By default, Audience Manager and Outbound E-mail are configured to connect to the Core Service using NetTcpBinding:
    • If you have installed Audience Manager and Outbound E-mail on the same machine as the Content Manager Server you can specify localhost.
    • Otherwise, specify the fully qualified server name.
    <System>
    	<LicenseFile></LicenseFile>
    	<CoreServiceUrl>net.tcp://ServerName.Domain:2660/CoreService/2012/netTcp</CoreServiceUrl>
    	<MonitoringAgentPort>20131</MonitoringAgentPort>
    </System>

    To connect to the Core Service using wsHttpBinding, replace <CoreServiceUrl> with, for example, the following:

    <CoreServiceUrl>http://ServerName.Domain/webservices/CoreService2012.svc/wsHttp</CoreServiceUrl>

    If you are using the SDL Tridion 2011 SP1-compatible endpoints, replace CoreService2011.svc with CoreService2012.svc.

    If you are using the SDL Tridion 2011-compatible endpoints, these endpoints are no longer supported. You must update and recompile your code.

  3. Save and close OutboundEmail.xml.