I downloaded the dump zip from my .sh account and opened a new trial database on odoo online. I'am able to connect to online db and read/write data correctly but when I try to use restore function I'am getting HTTP Error 423 Request Entity Too Large
import odoorpc
odoo = odoorpc.ODOOO( DOMAIN, protocol="jsonrpc", port=80)
odoo.login( ONLINE_DB, ADMIN, PASSWORD )
dump_file = open( SH_DUMP, 'rb')
odoo.db.restore( PASSWORD, ONLINE_DB, SH_DUMP )
Using protocol jsonrpc+ssl on port 433 return WinError 10054 An existing connection was forcibly close by the remote host
odoo = odoorpc.ODOOO( DOMAIN, protocol="jsonrpc+ssl", port=443)
Am I doing something wrong?
Thanks