import actors.Actor
import akka.actor.Actor._
class HelloWorldActor extends Actor {
  def receive = {
    case msg => self reply (msg + "world")
  }
}
remote.start("localhost",9999).register(
  "hello-service", actorOf[HelloWorldActor]
)

I'm getting the follow error with my code: error: not found: value self

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Well, that's because you've imported Scala Actors: "actors.Actor" and then try to create an instance of it using Akka.

If you change "actors.Actor" to "akka.actor.Actor", everything will be just fine.

link|improve this answer
error: class file needed by MessageInvocation is missing. reference type Serializable of package scala refers to nonexisting symbol. – Tyler Gillies May 21 '11 at 9:49
3  
Sounds like you're trying to use Akka 1.1 with Scala 2.8.1 – Viktor Klang May 21 '11 at 13:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.