Call methods between Meteor servers?

How can I exchange Messages / call methods from one Meteor server to
another?

You need to DDP.connect to the other server. The returned connection object lets you invoke its methods using calls: http://docs.meteor.com/#/full/ddp_connect

1 Like

Thank you very much!

1 Like