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
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
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
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
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]