Are you solve this ploblems? maybe my example can help you.
this is member_manager.py in controller
from soaplib.wsgi import Application
from soaplib.service import DefinitionBase, rpc
from soaplib.serializers.primitive import String, Integer
log = logging.getLogger(__name__)
class UserManagerService(DefinitionBase):
@rpc(_returns=String)
def get_hello(self):
return "hello world"
UserManagerController = Application([UserManagerService], __name__)
please add routes config
map.connect('/{controller}')
map.connect('/{controller}.wsdl')
before
map.connect('/{controller}/{action}')
On Oct 19, 5:17 pm, Ataulla <[email protected]> wrote:
> Dear all,
>
> I am facing problem to setup webservice contoller in pylons using
> soaplib 1.0.0 beta8.
> anybody is having snippet to setup webservice with soaplib 1.0.0?
>
> Thanks in advance
> Ataulla
--
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en.