I was attempting to use the JSON-RPC feature of bitcoind on ubuntu linux 12.04 64.
From another machine on the network I sent to the JSON port on the linux box
{"id":1,"account":"dianne","method":"getaccountaddress","jsonrpc":"2.0"}
I recieved an HTTP Error 500
I can successfully call other methods, for instance if I send
{"id":1,"method":"listaccounts","jsonrpc":"2.0"}
I recieve:
{"result":{"":0.00000000},"error":null,"id":1}
with no issues.
I was originally using version 0.7.2, but after I got these issues I found
https://bitcointalksearch.org/topic/blockchaininfo-json-rpc-compatible-api-problems-139620 on this form and thought the update would be in the new release candidate for version 0.8rc1
So I upgraded but I am still having the same issue.
So far the methods I've tried that work are:
listaccounts
listreceivedbyaddress
Methods that failed:
getaccountaddress
getnewaddress
These are the only methods I've tried so far.