Python and SOAP

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

    #1

    Python and SOAP

    Hello!

    I'd like to write a SOAP client and a SOAP server
    in Python.

    Is SOAPy still the way to go, or are there better
    methods?

    Regards,

    Peter

    --
    Meine E-Mail Adresse enthält keine Zahlen.
    My email address doesn't contain numbers.
  • Nelson Minar

    #2
    Re: Python and SOAP

    Peter Schaefer <peter.sch231ae fer@gmx.de> writes:[color=blue]
    > Is SOAPy still the way to go, or are there better methods?[/color]

    SOAPy hasn't been maintained in awhile. The two contemporary options
    are ZSI or SOAPpy, both at

    ZSI seems to have more serious development now, but neither is perfect.

    You should consider doing a document/literal service instead of
    rpc/encoded, the old way. Unfortunately in my experience doc/lit
    doesn't work as well with Python, but it's a better way of doing
    things. The ZSI guys are working at it.

    Comment

    • Peter Schaefer

      #3
      Re: Python and SOAP

      On 21.01.2005 01:16, Nelson Minar wrote:[color=blue]
      > Peter Schaefer <peter.sch231ae fer@gmx.de> writes:
      >
      > SOAPy hasn't been maintained in awhile. The two contemporary options
      > are ZSI or SOAPpy, both at
      > http://pywebsvcs.sourceforge.net/
      > ZSI seems to have more serious development now, but neither is perfect.
      >
      > You should consider doing a document/literal service instead of
      > rpc/encoded, the old way. Unfortunately in my experience doc/lit
      > doesn't work as well with Python, but it's a better way of doing
      > things. The ZSI guys are working at it.[/color]

      Great! I took a look, seems promising.
      Thanks a lot!

      Best regards,

      Peter

      --
      Meine E-Mail Adresse enthält keine Zahlen.
      My email address doesn't contain numbers.

      Comment

      • Diez B. Roggisch

        #4
        Re: Python and SOAP

        > I'd like to write a SOAP client and a SOAP server[color=blue]
        > in Python.
        >
        > Is SOAPy still the way to go, or are there better
        > methods?[/color]

        If you really need SOAP, Nelson did answer your question. But if you are
        only communicating between two python processes, I suggest pyro.

        --
        Regards,

        Diez B. Roggisch

        Comment

        Working...