chrislasher | Wed, 07 May 2008 09:53:00 GMT |
fredrik_lundh | Wed, 07 May 2008 09:54:00 GMT |
kbperry | Wed, 07 May 2008 09:55:00 GMT |
michele_simionato | Wed, 07 May 2008 09:56:00 GMT |
renepijlman | Wed, 07 May 2008 09:57:00 GMT |
n_davis | Wed, 07 May 2008 09:58:00 GMT |
michele_simionato | Wed, 07 May 2008 09:59:00 GMT |
renepijlman | Wed, 07 May 2008 10:00:00 GMT |
timparkin | Wed, 07 May 2008 10:01:00 GMT |
Hi, I am trying to install ZWiki on Zope 2.5.1 / Debian 2.4.20-bf2.4-xfs.First I copied the contents of the ZWiki-0.32.0.tgz to theProducts-directory under SOFTWARE_HOME:This is what it contained before:server1:/usr/lib/zope/lib/python/Products# lsExternalMethod PageTemplates StandardCacheManage...
Hi, I am trying to install ZWiki on Zope 2.5.1 / Debian 2.4.20-bf2.4-xfs.First I copied the contents of the ZWiki-0.32.0.tgz to theProducts-directory under SOFTWARE_HOME:This is what it contained before:server1:/usr/lib/zope/lib/python/Products# lsExternalMethod PageTemplates StandardCacheManag...
I try to connect to web services (written in C#/.NET) with latest ZSI2.0rc3 library. It just does not work.from ZSI.ServiceProxy import ServiceProxywsdl = 'http://192.168.0.103/NewWebServices/TemplateInsert.asmx?wsdl'print ServiceProxy(wsdl, tracefile=sys.stdout)"C:\opt\Python25\lib\si...
I try to connect to web services (written in C#/.NET) with latest ZSI2.0rc3 library. It just does not work.from ZSI.ServiceProxy import ServiceProxywsdl = 'http://192.168.0.103/NewWebServices/TemplateInsert.asmx?wsdl'print ServiceProxy(wsdl, tracefile=sys.stdout)"C:\opt\Python25\lib\site-packa...
Hi all. I have problem with ZSI and WSDL schema.I generate from WSDLby wsdl2py client method for webservice. I made soap call andsomething goes wrong. Doeas anyone know hot to create some server codeby ZSI from WSDL' I just suspectes that my return data fromwebservice is in incorrect envelo...
Hi There,I'm looking for an example of a simple SOAP web service call using theZolera SOAP Infrastructure library. The web service I am trying tocall contains a method that is supposed to accept a string as aparameter and output it to a file.I have tried the following and I am able to creat...
Hi all!I'm trying to make a simple SOAP call from python to SOAP::Lite (perl)SOAP server.My SOAP server has https://myserv.com/open-api URI, the functionopen_session has the "QW/API" namespace. SO I do the following:from ZSI.client import Bindingfp = open('debug.out', 'a'...
I'm trying to access a SOAP web-service using the latest ZSI, I have theServiceDescription and feeding it to a ZSI.ServiceProxy class.service = ZSI.ServiceProxy('http://xxxx.xxx.xx.x/app/app.asmx?WSDL')The problem is that the soapaction parameter is not set corectly in the SOAPreq...
First two appologies, this is probably not a Python question, moreSOAP. And second, there is every possibilty I am terminally having looked at this for two days now.What I want is to create a Python SOAP server. I am using the samplewhich comes with ZSI, namely the Echo.wsdl and associated files...
I have a ZSI client talking to a perl program through SOAP. The perlprogram has defined a return type of $esmith::recExtend, whereesmith::recExtend is a complex type defined in the WSDL as follows:<complexType name="EsmithRecExtend"><sequence><element name="databasename" nillable=...
Hi All,I'm trying to use ZSI (and SOAP) for the first time. I read somewherethat ZSI is the most compete SOAP implementation. I have ZSI-1.7 andPyXML-0.8.4. This very simple code:import ZSIfname = 'eBaySvc.wsdl'version = 421url = 'http://developer.ebay.com/webservices/%s/%s...
hi therei want to write a little SOAP client and thought about using ZSI.now i have read that ZSI only works with PyXML versions later than 0.6 andearlier than 0.7.unfortunaltly i can find that old versioons of PyXML on sourceforge anymore...any ideas?thanks, leo...
Dear All,I'm very new to python/ZSI and have a (simple) query to ask. I have asimple client:from ZSI.client import Bindingfp=open('debug.out','w')b=Binding(url='somewhere',tracefile=fp)print b.connect('usename')fp.close()and a server offrom ZSI import...
Hi,I tried for the last 2 hours now to somehow grasp how to use ZSI overmod_python. It's nice that they have a code-example in the ZSI docs,but it's incomplete and you are left guessing.The ZSI docs I used as reference can be found on http://pywebsvcs.sourceforge.net/zsi.html#SECTION00...
Hi,I tried for the last 2 hours now to somehow grasp how to use ZSI overmod_python. It's nice that they have a code-example in the ZSI docs,but it's incomplete and you are left guessing.The ZSI docs I used as reference can be found on http://pywebsvcs.sourceforge.net/zsi.html#SECTION0031300000...