Re: SOAPpy Error

2007-09-24 Thread linuxprog
linuxprog a écrit : > hi all > > i'm building a webservice client with soappy > > when i send some informations it's returns an error > here is the informations that generates the error >var = SOAPpy.structType() >var._addItem("code", u"Xys

SOAPpy Error

2007-09-24 Thread linuxprog
hi all i'm building a webservice client with soappy when i send some informations it's returns an error here is the informations that generates the error var = SOAPpy.structType() var._addItem("code", u"XysZjd") var._addItem("value", 1) when i send the var variable SOAPpy prints this

SOAP : ZSI error

2007-09-03 Thread linuxprog
hello i need some help with ZSI module i want to use the web service located here www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/soap/IDutch the wsdl file : http://www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/wsdl/IDutch that web service is very simple , the function NumToStr converts numbers

Re: strip() 2.4.4

2007-06-21 Thread linuxprog
Stephen R Laniel a écrit : On Thu, Jun 21, 2007 at 06:23:01AM -0700, Nick wrote: Why is there a apostrophe still at the end? Is it possible that you actually have whitespace at the end of the line? So then strip() is looking for an apostrophe at the end of the line, not finding it, and

need help with re module

2007-06-20 Thread linuxprog
hello i have that string "helloworldok" and i want to extract all the text , without html tags , the result should be some thing like that : helloworldok i have tried that : from re import findall chaine = """helloworldok""" print findall('[a-zA-z][^(<.*>)].+?[a-zA-Z]