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(); } |
Jira Legacy showSummary false server JIRA (geniussports.atlassian.net) serverId 03180ea7-16c3-3c7d-a258-d6088d6b5ada key BGI-103
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:
...