SOAPpy/ZSI/Twisted SOAP over stdin/stdout?

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

    SOAPpy/ZSI/Twisted SOAP over stdin/stdout?

    Normally the SOAP Servers are designed to take control of a port and
    run their own sockets via inheritance from SocktServer.

    But under inetd and xinetd, the port is controlled elsewhere and the
    service just gets the stdin/stdout. I need to configure (or tweak) one
    of the SOAP servers to use that connection.

    Has anyone done this with any of the above named SOAP servers?
    Recommmendation s or hints if I try it myself?




    --
    harry.g.george@ boeing.com
    6-6M21 BCA CompArch Design Engineering
    Phone: (425) 294-4718
  • Harry George

    #2
    Re: SOAPpy/ZSI/Twisted SOAP over stdin/stdout?

    Harry George <harry.g.george @boeing.com> writes:
    [color=blue]
    > Normally the SOAP Servers are designed to take control of a port and
    > run their own sockets via inheritance from SocktServer.
    >
    > But under inetd and xinetd, the port is controlled elsewhere and the
    > service just gets the stdin/stdout. I need to configure (or tweak) one
    > of the SOAP servers to use that connection.
    >
    > Has anyone done this with any of the above named SOAP servers?
    > Recommmendation s or hints if I try it myself?[/color]

    First, thanks for the hints - I definitely want to investigate Twisted
    "basic". Second, I've solved it by doing an xinetd "redirect". Do
    external control on one port, then pass the data to an internal-only
    port which is watched by the SOAP server.

    --
    harry.g.george@ boeing.com
    6-6M21 BCA CompArch Design Engineering
    Phone: (425) 294-4718

    Comment

    Working...