diff --git a/examples/CSharp/ConsoleApp/ConsoleApp/Program.cs b/examples/CSharp/ConsoleApp/ConsoleApp/Program.cs index 8de8459..1df7a54 100644 --- a/examples/CSharp/ConsoleApp/ConsoleApp/Program.cs +++ b/examples/CSharp/ConsoleApp/ConsoleApp/Program.cs @@ -18,7 +18,7 @@ namespace ConsoleApp using (var client = new SubscriberSocket()) { client.Options.ReceiveHighWatermark = 1000; - client.Connect("tcp://eddn-relay.elite-markets.net:9500"); + client.Connect("tcp://eddn.edcd.io:9500"); client.SubscribeToAnyTopic(); while (true) { diff --git a/examples/Java/src/main/java/org/eddn/examples/EddnPump.java b/examples/Java/src/main/java/org/eddn/examples/EddnPump.java index 12231fb..170450d 100644 --- a/examples/Java/src/main/java/org/eddn/examples/EddnPump.java +++ b/examples/Java/src/main/java/org/eddn/examples/EddnPump.java @@ -15,7 +15,7 @@ import java.util.zip.Inflater; public class EddnPump extends Thread { public static final String SCHEMA_KEY = "$schemaRef"; - public static final String RELAY = "tcp://eddn-relay.elite-markets.net:9500"; + public static final String RELAY = "tcp://eddn.edcd.io:9500"; public void msg(String msg) { System.out.println(msg); diff --git a/examples/NodeJS/index.js b/examples/NodeJS/index.js index 4dada95..a6dbf85 100644 --- a/examples/NodeJS/index.js +++ b/examples/NodeJS/index.js @@ -2,7 +2,7 @@ const zlib = require('zlib'); const zmq = require('zeromq'); const sock = zmq.socket('sub'); -sock.connect('tcp://eddn-relay.elite-markets.net:9500'); +sock.connect('tcp://eddn.edcd.io:9500'); console.log('Worker connected to port 9500'); sock.subscribe(''); diff --git a/examples/PHP/Client_Complete.php b/examples/PHP/Client_Complete.php index 957d9e0..0af7bee 100644 --- a/examples/PHP/Client_Complete.php +++ b/examples/PHP/Client_Complete.php @@ -2,7 +2,7 @@ /** * Configuration */ -$relayEDDN = 'tcp://eddn-relay.elite-markets.net:9500'; +$relayEDDN = 'tcp://eddn.edcd.io:9500'; $timeoutEDDN = 600000; // Set false to listen to production stream diff --git a/examples/PHP/Client_Simple.php b/examples/PHP/Client_Simple.php index 3ab236a..bf580e3 100644 --- a/examples/PHP/Client_Simple.php +++ b/examples/PHP/Client_Simple.php @@ -2,7 +2,7 @@ /** * Configuration */ -$relayEDDN = 'tcp://eddn-relay.elite-markets.net:9500'; +$relayEDDN = 'tcp://eddn.edcd.io:9500'; $timeoutEDDN = 600000; diff --git a/examples/Python 2.7/Client_Complete.py b/examples/Python 2.7/Client_Complete.py index 9d34878..c67b064 100644 --- a/examples/Python 2.7/Client_Complete.py +++ b/examples/Python 2.7/Client_Complete.py @@ -6,7 +6,7 @@ import sys, os, datetime, time """ " Configuration """ -__relayEDDN = 'tcp://eddn-relay.elite-markets.net:9500' +__relayEDDN = 'tcp://eddn.edcd.io:9500' #__timeoutEDDN = 600000 # 10 minuts __timeoutEDDN = 60000 # 1 minut diff --git a/examples/Python 2.7/Client_Simple.py b/examples/Python 2.7/Client_Simple.py index fa741cf..227e15d 100644 --- a/examples/Python 2.7/Client_Simple.py +++ b/examples/Python 2.7/Client_Simple.py @@ -7,7 +7,7 @@ import time """ " Configuration """ -__relayEDDN = 'tcp://eddn-relay.elite-markets.net:9500' +__relayEDDN = 'tcp://eddn.edcd.io:9500' #__timeoutEDDN = 600000 # 10 minuts __timeoutEDDN = 60000 # 1 minut diff --git a/examples/Python 3.4/Client_Complete.py b/examples/Python 3.4/Client_Complete.py index b2a0b49..486e2a0 100644 --- a/examples/Python 3.4/Client_Complete.py +++ b/examples/Python 3.4/Client_Complete.py @@ -6,7 +6,7 @@ import sys, os, datetime, time """ " Configuration """ -__relayEDDN = 'tcp://eddn-relay.elite-markets.net:9500' +__relayEDDN = 'tcp://eddn.edcd.io:9500' __timeoutEDDN = 600000 # Set False to listen to production stream diff --git a/examples/Python 3.4/Client_Simple.py b/examples/Python 3.4/Client_Simple.py index 526c44f..43c9849 100644 --- a/examples/Python 3.4/Client_Simple.py +++ b/examples/Python 3.4/Client_Simple.py @@ -7,7 +7,7 @@ import time """ " Configuration """ -__relayEDDN = 'tcp://eddn-relay.elite-markets.net:9500' +__relayEDDN = 'tcp://eddn.edcd.io:9500' __timeoutEDDN = 600000