in reply to Perl RPC

You can use PlRPC, or SOAP, but there is a very widely accepted way of doing RPC with Perl and it's called HTTP. Just write your RPC service as a CGI or mod_perl module and call it with LWP. Instant infrastructure.

Replies are listed 'Best First'.
Re^2: Perl RPC
by adrianh (Chancellor) on Oct 23, 2002 at 22:20 UTC

    ++. Totally agree.

    This approach has been slightly formalised in REST. Often a lot less painful than SOAP in my opinion.