X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Focpp-server%2FREADME.md;h=32e136196b9fb2eba197b78001ed235897d95656;hb=47a41cfff7de841a931f5694dbcddaf235e91bdd;hp=e4a810d8a7c25f2bd37529cdc470d3fe86f62de0;hpb=7c945b4ac211aafb6e90645a0364c12d7373522e;p=e-mobility-charging-stations-simulator.git diff --git a/tests/ocpp-server/README.md b/tests/ocpp-server/README.md index e4a810d8..32e13619 100644 --- a/tests/ocpp-server/README.md +++ b/tests/ocpp-server/README.md @@ -20,29 +20,27 @@ poetry run task server The server will start listening for connections on port 9000. -## Running the server with command sending +## Running the server with OCPP command sending -You can also specify a command and a period duration with the --request and --period options respectively when running the server. The server will then send your chosen command to the connected client every period seconds. +You can also specify a command and a period duration with the --command and --period options respectively when running the server. The server will then send your chosen command to the connected client(s) every period seconds. ### GetBaseReport Command To run the server and send a GetBaseReport command every 5 seconds, use: ```shell -poetry run task server --request GetBaseReport --period 5 +poetry run task server --command GetBaseReport --period 5 ``` -======= - ### ClearCache Command To run the server and send a ClearCache command every 5 seconds, use: ```shell -poetry run task server --request ClearCache --period 5 +poetry run task server --command ClearCache --period 5 ``` -Please be mindful that these commands were examples according to the provided scenario, the available commands and their syntax might vary depending on the ocpp version and the implemented functionalities on your server. +Please be mindful that these commands were examples according to the provided scenario, the available commands and their syntax might vary depending on the ocpp version and the implemented functionalities on your client. ## Overview of the Server Scripts