I'm having troubles with v8 when the installation of the database it's outside (ip connection) of the machine where i'm running the odoo.
I narrow down the problem to the connection, i tested:
- the database version,
- the modules version,
- the demo data, -
- the server port,
- from clean databases
And the results are that, the server bus in the backend does not register the messages in the database, therefore the frontend does not receive the message.
I did this: http://stackoverflow.com/questions/30784771/reload-kanban-view-after-a-wizards-closes-in-odoo-8 to reload a kanban view, but when i install the database outside the server (different machines different IP) the backend bus doesn't work:
This does absolutely nothing:
bus = self.env['bus.bus']
message = {
'subject': '',
'body': 'Appointment Set',
'mode': 'notify',
}
bus.sendone('<CHANNEL-NAME>', message)
And does not give any error message.
I am investigating more about this, but with no good results. I am attaching the logs and the databases dump (FYI: i've try to restore the local database dump in the remote server, but that didn't work either)