İçereği Atla
Menü
Bu soru işaretlendi
2 Cevaplar
6137 Görünümler

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

Avatar
Vazgeç
En İyi Yanıt

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
Vazgeç
En İyi Yanıt

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
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
3
May 22
11368
0
Mar 15
3739
0
Ağu 25
3
0
Tem 25
2
0
Mar 25
1133