Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple namespace for diffrent services #492

Open
ghost opened this issue May 24, 2016 · 3 comments
Open

Multiple namespace for diffrent services #492

ghost opened this issue May 24, 2016 · 3 comments

Comments

@ghost
Copy link

ghost commented May 24, 2016

I'm trying to host SOAP service using this example part of code:

HelloWorldService(ServiceBase):
    @srpc(Unicode, Integer, _returns=Iterable(Unicode))
    def say_hello(name, times):
        for i in range(times):
            yield 'Hello, %s' % name
application = Application([HelloWorldService],
    tns='spyne.examples.hello',
    in_protocol=Soap11(),
    out_protocol=Soap11()
)
if __name__ == '__main__':
    # You can use any Wsgi server. Here, we chose
    # Python's built-in wsgi server but you're not
    # supposed to use it in production.
    from wsgiref.simple_server import make_server
    wsgi_app = WsgiApplication(application)
    server = make_server('0.0.0.0', 8000, wsgi_app)
    server.serve_forever()

It's working but it uses only one namespace.
tns='spyne.examples.hello'

I can define multiple services in this line:

application = Application([HelloWorldService, OtherService1, OtherService2]

But is it possible to define diffrent namespace for each service? Something like this doesn't work:

tns=['spyne.examples.hello', 'http://other.service1', 'http://other.service2']

@plq
Copy link
Member

plq commented Jun 21, 2016

Please follow up with the WSDL output you're after

@maerteijn
Copy link

Currently in spyne you can't do this. You could solve this problem by defining multiple endpoints, so each application has it's own namespace:

from wsgiref.simple_server import make_server

from spyne import Application
from spyne.protocol.soap.soap11 import Soap11
from spyne.util.wsgi_wrapper import WsgiMounter

cow_application = Application(
    [CowService],
    tns='spyne.namespace.cow',
    name='cow',
    in_protocol=Soap11(validator='lxml'),
    out_protocol=Soap11()
)

chicken_application = Application(
    [ChickenService],
    tns='spyne.namespace.chicken',
    name='chicken',
    in_protocol=Soap11(validator='lxml'),
    out_protocol=Soap11()
)


wsgi_mounter = WsgiMounter({
    'cow': cow_application,
    'chicken': chicken_application,
})

server = make_server('0.0.0.0', 8000, wsgi_mounter)
server.serve_forever()

@yunmo555
Copy link

yunmo555 commented Aug 7, 2020

How do I remove the namespace of parameters in an application?
for example:tns:name =>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants