Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
6140 Weergaven

What is the correct way to register a new WSGI handler provided by an addons?

Avatar
Annuleer
Beste antwoord

To register a new WSGI handler, the best way is to mimic what is done by the web module:

In its __openerp__.py file, it declares a hook to be called when the module is loaded (that is, even if a database/registry is not loaded).

'post_load': 'wsgi_postload'

Then, grepping for wsgi_postload's definition, we see it simply registers its WSGI handler with the openerp.wsgi.register_wsgi_handler() function.

Note that routing between the different WSGI handlers is pretty basic in OpenERP: each handler is tried. If the handler returns None, the next one is tried and so on. If it does not return None, it must instead handle the request.

Avatar
Annuleer
Beste antwoord

Hello Niko,

All OpenERP Services which are exposed on any Kind of Service Weather it's WSGI or any other way.

So all in all you need to create new web service under file : - /70/server/openerp/service/web_services.py

Then write your service handlers like below example:

class testservice(netsvc.ExportService):
    def __init__(self, name="db"):
        netsvc.ExportService.__init__(self, name)
        self.actions = {}
        self.id = 0
        self.id_protect = threading.Semaphore()

    def dispatch(self, method, params):
        if method in [ 'create',:
            passwd = params[0]
            params = params[1:]
            security.check_super(passwd)
        else:
            raise KeyError("Method not found: %s" % method)
        fn = getattr(self, 'exp_'+method)
        return fn(*params)

    def exp_create(self, param, param):
        #Your Service hanlder Code goes here...
        return id

and this service will be exposed as regular service.

and can be used as other services.

Thank YOu

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
3
mei 22
11369
0
mrt. 15
3741
0
aug. 25
3
0
jul. 25
2
0
mrt. 25
1133