Description
I am trying to implement a dynamic smart charging functionality on an EV charger using python scripts and using SteVe just as a backup back-end. I am running scripts on the same computer as SteVe is running on, but instead of forwarding the request to the charger, I believe SteVe is trying to handle it itself.
For example, If I make a GetConfiguration request through the script, I send the message to the endpoint of charger specified which is
ws://<IP_address>:/steve/websocket/CentralSystemService/<charger_name>
[2,"aarpkeytest","GetConfiguration",{"key":[]}]
Received message: [4,"aarpkeytest","NotImplemented","The action 'GetConfiguration' you are looking for is not found",{}]
whereas I get the actual expected response if I make the request through SteVe's web UI, which essentially send the same message, but I get the expected response.
Any insights on what I am doing wrong or how to accomplish this?