By default, Audience Manager is configured use the NetTcpBinding binding to communicate with the Core Service. 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 %TRIDION_HOME%, for editing.
- Locate the
<System> section. By default, Audience Manager is configured to use NetTcpBinding to connect to the Core Service:
- If you have installed Audience Manager 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/201601/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/CoreService201601.svc/wsHttp</CoreServiceUrl>
If you are using the SDL Tridion 2011 SP1-compatible endpoints, replace CoreService2011.svc with CoreService201601.svc.
If you are using the SDL Web 8-compatible endpoints, replace CoreService201501.svc with CoreService201601.svc.
If you are using the SDL Tridion 2011-compatible endpoints, these endpoints are no longer supported. You must update and recompile your code.
- Save and close
OutboundEmail.xml.