Search Unity

Server To Server comunication

Discussion in 'Multiplayer' started by rterranova, Sep 23, 2013.

  1. rterranova

    rterranova

    Joined:
    Nov 6, 2009
    Posts:
    43
    I'm trying to have two server comunicate with a third server.

    Example Server A, and Server B comunicate with Server C. Then Server C could send communication back to Server B and Server A. This would be through RPCs

    Is this possible?

    If so how would I do this. All of my current server code is written in C# script in a Unity Project.
     
  2. appels

    appels

    Joined:
    Jun 25, 2010
    Posts:
    2,687
    Impossible with the built-in networking.
     
  3. tobiass

    tobiass

    Joined:
    Apr 7, 2009
    Posts:
    3,072
    You can setup the communication with plain TCP sockets and then define what a message is and how to call methods and pass parameters.
    Photon Server has this built in, just in case third party solutions are fine for you.
    Lidgren should be a suitable base for this and free but you still need to solve calling methods remotely with that.
     
  4. MrMassively

    MrMassively

    Joined:
    Sep 4, 2013
    Posts:
    115
    Ive only seen this with uLink networking

    maybe it should help you.