From: Dieter M. <di...@ha...> - 2015-01-12 17:30:18
|
Anurag Chourasia wrote at 2015-1-12 13:13 -0300: >I am using a fork of SUDS > >>>> suds.version ><module 'suds.version' from >'C:\Python27\lib\site-packages\suds_jurko-0.6-py2.7.egg\suds\version.pyc'> >>>> dir(suds.version) >['__build__', '__builtins__', '__doc__', '__file__', '__loader__', >'__name__', '__package__', '__version__'] >>>> suds.version.__version__ >'0.6' > >I went through https://pypi.python.org/pypi/dm.zope.rpc.wsdl_suds and it >indicates dependency on suds==0.3.9 In fact "suds >= 0.3.9" (not "suds==0.3.9"). It was developped with "suds == 0.3.9" and may (or may not) work with higher "suds" versions. >Is that package under active development? I have developped "dm.zope.rpc.wsdl_suds" for a (paying) client. However, the client still uses a Java implemented webservice implementation (despite various problems), i.e. for the moment, he is not using "dm.zope.rpc.wsdl_suds". This may (or may not) change in the future. If it happens (or another paying client is interested), I will fix any encountered problems. However, I do not expect you to use "dm.zope.rpc.wsdl_suds" itself. It is for a Zope environment - and likely, you do not use this Web application framework. I mentioned it as an example how one can use "suds" parts to implement a server - even though "suds" is a client library. You could use something like this (but not it itself) in your Web application framework. -- Dieter |