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
- Open
OutboundEmail.xml located by default in the config subdirectory of your Content Manager root location in a plain-text editor or XML editor.
- 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/2011/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/CoreService2011.svc/wsHttp</CoreServiceUrl>
If you are using the SDL Tridion 2011-compatible endpoints, replace CoreService2011.svc with CoreService.svc.
- Save and close
OutboundEmail.xml.