How to create actors in remote actor system?

Hi,

How to create actors in a remote actor system under the same logical path ?

Example: I am creating actor W1 in actor system N1. And I want to create its child actor X1 in a different actor system.

Here X1 is child of W1.

So how to create child actors on different actor system ?

And If my parent actor gets terminated / killed I want to kill all of its children

Thanks

Thanks @ignatius

I am using Akka cluster. If it is remoting then I should change my provider into remote.

But I want to create actors in another actor system using Akka cluster.

Is there any way to achieve it via Akka cluster ?