RE: SOAPpy and ArrayOfString

2008-08-14 Thread Edwin . Madari
ules to accept long data type, and work from behind a firewall. hope that helps... thanks Edwin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of annu miya Sent: Thursday, August 14, 2008 12:11 PM To: python-list@python.org Subject: SOAPpy and ArrayOfString H

SOAPpy and ArrayOfString

2008-08-14 Thread annu miya
Hi,   In the article below you mention that you were succesful at doing this through perl. Would it be possible to send me the perl code?   http://mail.python.org/pipermail/python-list/2007-January/423311.html   Thank You   Regards   Sid -- http://mail.python.org/mailman/listinfo/python-l

Re: SOAPpy and ArrayOfString

2007-01-21 Thread icius
Figured it out. This works: #!/usr/bin/python import SOAPpy wsdlFile = 'http://localhost:8080/axis/services/USD_R11_WebService?WSDL' server = SOAPpy.WSDL.Proxy(wsdlFile) server.soapproxy.config.dumpSOAPOut = 1 server.soapproxy.config.dumpSOAPIn = 1 SID = server.login('srvcdesk', 'x'

SOAPpy and ArrayOfString

2007-01-21 Thread icius
Hello all, I am trying to use a web services API with Python and SOAPpy as a client. Some of the method paramters in this web service's WSDL are asking for an "ArrayOfString" type. Here is my code so far: #!/usr/bin/python from SOAPpy import WSDL wsdlFile = 'http://localhost:8080/axis/services