I am currently connecting to my bitcoin node via the command line for example :
0bitcoin-cli -named -rpcuser=admin -rpcpassword=1475963-test -rpcport=8332 -rpcwallet=test-01 sendtoaddress address=DMvWAyQUNJeeKr6xJpeXybVYZLi9nT2oze amount=0.1
And now I want to do this through the web service
0curl --user admin:1475963-test --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "sendtoaddress", "params": ["DMvWAyQUNJeeKr6xJpeXybVYZLi9nT2oze ", 0.1] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
-How should I use -rpcwallet with web service(curl)?