Hello,
we've downloaded
Then we set the environment variable EMAInstall to
C:\Projects\API\EMA\Elektron-SDK\ema where we've unzipped Elektron SDK and we can compile the project ...step2\Consumer_VS120.vcxproj without errors. That works.
Now we'd like to run Step2 and obtain some response data.
The source code is:
.....................
cout << "Connecting to market data server" << endl;
// create OMM consumer
OmmConsumer consumer(
OmmConsumerConfig()
.host( "TOR_ADS:14002" )
.username( "user" )
);
.....................
we're waiting from Reuters person with whom we signed the contract the data like
hostname, portnumber, service name, DACS user name
The questions:
1) In the above example is it enough to change only "TOR_ADS:14002" and "user" with our account's data we will get from Reuters person?
2) Should'n we insert a password somewhere? How to you authenticate users?
3) Is it possible to know all port numbers we need to open in our firewall? Only TCP port 14002? That's all?
Thanks in advance