Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

sensorlab/ProtoStack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ProtoStack

ProtoStack is a tool for experimentation with dynamic composition of communication services. The implementation of ProtoStack was triggered by a wireless sensor network testbed and is used for experimentation with cognitive radio and cognitive networking in the frame of the CREW project. As such, ProtoStack is designed in a way to ease research and experimentation with communication networks, particularly with cognitive networks. The system was designed so that an advanced user, such as the component developer needs, to focus on developing the component and make it work with Contiki OS and a novice user needs only to focus on composing services in a stack using the workbench.

ProtoStack needs the following components:

  • JRE6 or newer
  • Apache
  • Tomcat
  • Sesame 2.x (http://www.openrdf.org/download.jsp)
  • The WireIT library
  • Contiki OS
  • The toolchain allowing building the Contiki image and programming your HW with it

ProtoStack's components are:

More detailed documentation will come soon.

Setup guide

This a step-by-step guite to setup the ProtoStack tool. All required components are listed in the Readme file.

  1. Clone the repository into your local filesystem
  2. Install Apache server and set it up to serve ProtoStack/crimeLayers folder
  3. Install Apache Tomcat using:
  • apt-get install apache7
  • sudo apt-get install tomcat7-admin (to get the manager webapp)
  1. Setup Tomcat:
For more info visit: https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-7-on-ubuntu-14-04-via-apt-get 5. Download and extract the OpenRDF Sesame framework. I used version 2.5.1. 6. Setup and deploy OpenRDF Sesame to Tomcat: - open the openrdf-sesame/war folder and copy the two .war files to your /var/lib/tomcat7/webapps folder - Open the tomcat manager webapp, under Applications navigate to /openrdf-workbench. If you'll get prompted to change the server name, enter http://localhost:8090/openrdf-sesame - If this doesn't work, try the following: *Symptom:* openrdf-workbench gives an "Invalid Server URL" error when attempting to set the server URL at http://localhost:8080/openrdf-workbench/repositories/NONE/server *Possible solution:* Ownership of /usr/share/tomcat7 directory may be wrong. Try accessing the sesame backend directly, by browsing to http://localhost:8080/openrdf-sesame/ . If you get a java exception with a stack trace that reports: {{{ java.io.IOException: Unable to create logging directory /usr/share/tomcat7/.aduna/openrdf-sesame/logs }}} then check the ownership and change it to: {{{ ls -ld /usr/share/tomcat7 sudo chown -R tomcat7:tomcat7 /usr/share/tomcat7 sudo service apache2 restart }}} - under "Repositories" click on "New repository". Enter this data: Type: "Native Java Store RDF Schema" ID: "crime" Title: "crime" Click next and then create. 7. Configure Apache to route requests to Jetty (to avoid browser's cross origin policy violation): - add these two lines in the apache2.conf file: ProxyPass /jetty/ http://localhost:8080/jetty ProxyPassReverse / http://localhost:8080/ - run: "sudo nano /etc/apache/httpd.conf" and add: ServerName jetty ProxyRequests off ProxyPass / http://localhost:8080/jetty/ ProxyPassReverse / http://localhost:8080/jetty/

This thread might be helpful: http://stackoverflow.com/questions/12184479/running-multiple-java-jetty-instances-with-same-port-80

  1. Download required libraries for ProtoStack
  1. Download Contiki and CRime:
  1. Import/Open the Protostack project in a Java IDE (I used Netbeans). Edit RunServer.java, specifically lines 13, 15 and 20 (strings cSrcPath, ontologFNm and outSrcPath) to represent where crime files are located. Check TripleStore.java in lines: 44, 53, 61, 69, 77, 85, 93, 102, 167, 301 and 326 if you placed crime.owl file in a different location (if no changes to the folder structure were made, it should be automatically served on apache server together with the crimeLayers folder at localhost/owl/cfrime.owl). Check line 113 of TripleStore.java to make sure you state the port where you Sesame server is running (with newer versions of Sesame, it runs on /openrdf-sesame). Finally, open RequstHandler and change line 112 to point to contiki rime examples.
  2. After these changes are made, build the project. Then go to your ProtoStack directory and navigate to "/build/classes" and run "java -cp .:servlet-api.jar:jetty-l.jar:../../dist/ProtoStack.jar RunServer" to start the Jetty server. (Packages servlet-api.jar and jetty-l.jar are needed, because this project uses embedded Jetty to provide server functionality.)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published