[akka-user] Getting started with akka tutorials

2016-09-11 Thread lksaj4
Hi, I'm trying to build a rest server with akka-http, but I'm having trouble getting anything to run. I'm still trying to get the tutorials to run, but I'm stuck. What am I missing? Any help would be appreciated. Here's what I tried: Clone the akka repository: cd ~/workspace git clone https://

Re: [akka-user] Getting started with akka tutorials

2016-09-11 Thread Ivan Vyshnevskyi
Hi, Removing akka.Main from your last command should help: /usr/lib/jvm/java-8-openjdk-amd64/bin/java -classpath ".:$JARS" docs.http.javadsl.server.HighLevelServerExample akka.Main is only required to start your application when all you have is a top-level actor. In this case HighLevelServerExamp

Re: [akka-user] Getting started with akka tutorials

2016-09-12 Thread lksaj4
Ok, Obviously there had to be something so basic since it was a tutorial file. I should have read the code with a little more thought and notice that it already had a main-function. Thanks for pointing out the obvious! On Sunday, September 11, 2016 at 6:53:30 PM UTC+3, Ivan Vyshnevskyi wrote: