By default SOAP::Transport::IO uses STDIN and STDOUT for input and output and as such it should be quite trivial to implement an inetd based SOAP server - The following is an untested inetd-based SOAP server based upon some existing code which I had on hand.
#!/opt/bin/perl package main; # For Perl 6 forward-compatability # The following constants are used to define server timeout and sock +et # timeout behaviour. sub TIMEOUT_PEER () { 60 } sub TIMEOUT_SERVER () { 300 } use IO::Socket; use POSIX qw( WNOHANG ); use SOAP::Transport::IO; use Socket qw( :crlf ); use vars qw( $VERSION ); $VERSION = sprintf( "%d.%02d", q$Revision: 1.4 $ =~ /(\d+)\.(\d+)/ ); # Define signal handlers for timeout and child events $SIG{'ALRM'} = sub { exit 0 }; $SIG{'CHLD'} = sub { while ( waitpid( -1, WNOHANG ) > 0) {} }; # Create IO socket from STDIN file descriptor on which the network # communication socket is duplicated for the server process by the i +netd # daemon. my $socket = IO::Socket->new_from_fd( STDIN, 'r+' ); unless ( defined $socket ) { croak( 'Cannot create socket from STDIN -- ', $! ); } while ( my $connection = $socket->accept ) { my $child = undef; unless ( defined ( $child = fork() ) ) { croak( 'Cannot fork process to handle new connection -- ', $! +); } if ( $child == 0 ) { # Clear the alarm timeout, close the parent socket and initi +ate # communication with POP3 client. alarm(0); $socket->close; STDIN->fdopen( $connection, 'r' ) or croak( 'Cannot re-open STDIN for input -- ', $! ); STDOUT->fdopen( $connection, 'w' ) or croak( 'Cannot re-open STDOUT for output -- ', $! ); STDERR->fdopen( $connection, 'w' ) or croak( 'Cannot re-open STDERR for output -- ', $! ); STDOUT->autoflush(1); SOAP::Transport::IO::Server ->new ->dispatch_to('/path/to/modules', 'Local::Module') ->handle; } } continue { $connection->close; alarm( TIMEOUT_SERVER ); exit 0; } 1; __END__

 

perl -le "print unpack'N', pack'B32', '00000000000000000000001011010001'"


In reply to Re: SOAP::Lite Servers and inetd by rob_au
in thread SOAP::Lite Servers and inetd by tektsu

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.