To allow us to deliver data, we ask that you provide an HTTP endpoint that exposes the following interface:
Code Block | ||
---|---|---|
| ||
interface ITradingPlatform { void ProcessMessage(string messageXml); void Heartbeat(); } |
...
We will then develop a Connector to plug-in to a per-client deployment of our Integration Service to communicate with this endpoint. This enables us to provide bespoke messaging and security provision that precisely meets your requirements. We then POST XML over HTTP secured with SSL/TLS (HTTPS).
The two methods we require are:
...