I wrote a program using Scala's remote actors. My first step was to create a client and a server who communicate by loopback (127.0.0.1) and it works well. When I try to communicate between two stations on the same network, the server doesn't catch anything. The only thing I changed between local and remote client's program is the server's IP address.
Here is the client code:
case class Post(msg: String)
object Client extends Application {
val client = new ClientRemote
client.sendMessage
}
class ClientRemote extends Actor {
val server = select(Node("127.0.0.1", 9010), 'name) //' or server IP
def sendMessage(): Unit = {
server ! Post("Hello!")
}
def act() {
// do something
}
}
Here is the server code:
case class Post(msg: String)
object Server extends Application {
val server = new ServerRemote
server.start
}
class ServerRemote extends Actor {
def act() {
alive(9010)
println("server is started!")
register('name, self) //' register to port
loop {
react {
case Post(msg) => println(msg)
}
}
}
}
Does anybody know why these programs dont' work or any idea about a solution?
thanks