README.md 982 Bytes
Newer Older
Luca Arrotta's avatar
Luca Arrotta committed
1 2 3 4
# Setup REST and MQTT



Luca Arrotta's avatar
Luca Arrotta committed
5
* You can import the project directly from a *Version Control System*, by providing the following URL: 
Luca Arrotta's avatar
Luca Arrotta committed
6
https://ewserver.di.unimi.it/gitlab/riccardopresotto/setup_test_sdp.git
Luca Arrotta's avatar
Luca Arrotta committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

<img src = './assets/img_1.png'>


* Otherwise, take care to import the project as a Gradle Project

## REST

* Run StartServer.java located in: *REST\_MQTT_example/src/main/java/REST/*
* Use a REST Client application (i.e., Advanced REST Client) to test if the server works correctly
* For example you can run the following request:

<img src = './assets/img_2.jpeg'>


## MQTT
* Dowload and install the Mosquitto broker from here: *https://mosquitto.org/download/*
* Run the Mosquitto broker:
	* **MacOS**
		- brew services start mosquitto
		- mosquitto_sub -h localhost -v -t ‘#’  *(Instead ‘#’ specify the topics of interest)*
	* **Windows**
		- Run the file mosquitto.exe

* Run SubExample.java and PubExample.java located in *REST\_MQTT_example/src/main/java/MQTT/*