Hi Axel:
As you say, I did it by doing a patch directly on web/http.py, but sinces modifying core addons is not a recommended practice I want to inherit in my own addon.
I tried:
Created addons\my_addon\httpy.py as follows:
from web import session
from web.http import WebRequest
from web.http import JsonRequest
class JsonRequest(WebRequest):
def dispatch(self, method):
....my changes to error response here...
I added httpy.py to my init.py and even tryed adding dependance to web on my __openerp__.py, but still native error msg in english with traceback is being displayed! Thanks! MaytePD:My Karma doesn't allow me to delete my first response