re-discovered this page
https://en.bitcoin.it/wiki/API_reference_(JSON-RPC)which lists varying methods to engage with client via rpc.
which makes me curious if there is a pre-built app, browser page, or anything else etc for ease of communications.
ie gives you a command line style interface which behaves in a similar manner to teh debug console.
.
also using curl
curl --user user --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getinfo", "params": [] }'
-H 'content-type: text/plain;'
http://127.0.0.1:8332/the qt will not respond to anything except single word queries,
is fine but
gives an error
curl --user user --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "masternode list-conf", "params": [] }'
-H 'content-type: text/plain;' http://127.0.0.1:8332/
{"result":null,"error":{"code":-32601,"message":"Method not found"},"id":"curltest"}[/quote]