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


Groups > comp.lang.python > #54324 > unrolled thread

Suds and Complex Sequences

Started byGreg Lindstrom <gslindstrom@gmail.com>
First post2013-09-17 12:51 -0500
Last post2013-09-17 18:39 +0000
Articles 2 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  Suds and Complex Sequences Greg Lindstrom <gslindstrom@gmail.com> - 2013-09-17 12:51 -0500
    Re: Suds and Complex Sequences John Gordon <gordon@panix.com> - 2013-09-17 18:39 +0000

#54324 — Suds and Complex Sequences

FromGreg Lindstrom <gslindstrom@gmail.com>
Date2013-09-17 12:51 -0500
SubjectSuds and Complex Sequences
Message-ID<mailman.86.1379440291.18130.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

Hello Everyone -

I am trying to use Suds, the very fine library allowing me to use SOAP, to
query a service over the net.  Part of the data structure defined be the
WSDL calls for a sequence of SubscriberDataTypes (this application is used
to test an insurance companys' rating service).

(SubscriberDataType){
   SubscriberID = None
   SubscriberBirthDate = None
   Zip = None
   <snip>
   DependentData[] = <empty>
 }

Which goes into

(MedicalRatingRequest){
   MessageHeader =
      (MessageHeaderType){
         MessageName = None
         MessageID = None
         <snip>
      }
   RequestHeader =
      (RequestHeaderType){
         RequestType =
            (RequestTypeEnum){
               value = None
            }
         <snip>
      }
   <snip>
   SubscriberData[] = <empty>
 }

Note that the Subscriber Data is a sequence of SubscriberDataType.  I have
not been able to find any documentation showing me how to do this.  Does
anyone out there know how I can generate the request?

Thanks for your time,

Greg Lindstrom

[toc] | [next] | [standalone]


#54326

FromJohn Gordon <gordon@panix.com>
Date2013-09-17 18:39 +0000
Message-ID<l1a7kp$3im$1@reader1.panix.com>
In reply to#54324
In <mailman.86.1379440291.18130.python-list@python.org> Greg Lindstrom <gslindstrom@gmail.com> writes:

> --089e0122976c27f48b04e697f887
> Content-Type: text/plain; charset=ISO-8859-1

> Hello Everyone -

> I am trying to use Suds, the very fine library allowing me to use SOAP, to
> query a service over the net.  Part of the data structure defined be the
> WSDL calls for a sequence of SubscriberDataTypes (this application is used
> to test an insurance companys' rating service).

Contact whomever is providing this data and ask them for documentation.

-- 
John Gordon                   A is for Amy, who fell down the stairs
gordon@panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web