A beginer question about SOAP and Python: <SOAPpy.Types.structType HashStringResponse at 23909440>: {}

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jim

    #1

    A beginer question about SOAP and Python: <SOAPpy.Types.structType HashStringResponse at 23909440>: {}

    Hi all,

    I am new to SOAP and Python. I am practicing
    learning SOAP with Python. I sent a request
    and I got the following response:

    <SOAPpy.Types.s tructType HashStringRespo nse
    at 23909440>: {}


    What does that mean? and how can I print the
    result hash string ?

    Please reply to the group.

    Thanks for your help.
    Jim.


  • bruno modulix

    #2
    Re: A beginer question about SOAP and Python: &lt;SOAPpy.Type s.structType

    Jim wrote:[color=blue]
    > Hi all,
    >
    > I am new to SOAP and Python. I am practicing
    > learning SOAP with Python. I sent a request
    > and I got the following response:
    >
    > <SOAPpy.Types.s tructType HashStringRespo nse
    > at 23909440>: {}
    >
    >
    > What does that mean?[/color]

    Seems like you've got a SOAPpy.Types.st ructType instance that is named
    HashStringRespo nse, that is located at memory address 23909440, and that
    looks like an empty dict.
    [color=blue]
    > and how can I print the
    > result hash string ?[/color]

    I don't know. I've never played with SOAP, so I don't even know if this
    (HashStringResp onse) is part of the standard SOAP api or if it's
    specific to the service you're calling.

    Did you look at the SOAPpy api for the description of Types.structTyp e ?

    --
    bruno desthuilliers
    python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
    p in 'onurb@xiludom. gro'.split('@')])"

    Comment

    Working...