I am have install curl and verified it works
I am running an alt-coin wallet, however, I think my problem is in how I am making the call and not the client.
Running
Code:
curl --user user:password --data-binary '{"jsonrpc":"1.0","id":"curltext","method":"getinfo","params":[]}' -H 'content-type:text/plain;' http://127.0.0.1:XXXX
Returns
Code:
{"result":null,"error":{"code":-32700,"message":"Parse error"},"id":null}
I have checked to verify that the qt-client was running in
Code:
-server
Code:
http://127.0.0.1:XXXX
This leads me to think that the server is running but I am formatting my commands incorrectly, or some option isn't turned on. Any advice is appreciated.