Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #46677

xsd:anyType parameter in suds!

Date 2013-06-02 04:56 +0200
From Tamer Higazi <th982a@googlemail.com>
Subject xsd:anyType parameter in suds!
Newsgroups comp.lang.python
Message-ID <mailman.2533.1370142168.3114.python-list@python.org> (permalink)

Show all headers | View raw


Hi people!
I have a problem passing an xs:anyType Parameter in "suds".

The original sample is an application, where a "PHP Array" is being
passed for the remoted method. What is the same type in python to
accomplish the task?!

doc with sample:
http://kasapi.kasserver.com/dokumentation/?open=soap


here the sample code with it's output:


from suds.client import Client

class KasAPI(object):
       def __init__(self):
        self.__WSDL =
'https://kasserver.com/schnittstelle/soap/wsdl/KasAuth.wsdl'
        self.client = Client(self.__WSDL)
       KasOBJ = KasAPI()
print KasOBJ.client


output:


Suds ( https://fedorahosted.org/suds/ )  version: 0.4 GA  build:
R699-20100913

Service ( KasApiAuthenticationService ) tns="https://kasserver.com/"
   Prefixes (0)
   Ports (1):
      (KasApiAuthenticationPort)
         Methods (1):
            KasAuth(xs:anyType Params, )
         Types (0):


Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

xsd:anyType parameter in suds! Tamer Higazi <th982a@googlemail.com> - 2013-06-02 04:56 +0200
  Re: xsd:anyType parameter in suds! alex23 <wuwei23@gmail.com> - 2013-06-02 19:32 -0700

csiph-web