#!/usr/bin/perl -w use strict; use LWP::UserAgent; my $ua = new LWP::UserAgent; use LWP::Debug '+'; # create data my $content = <<"START" ; sum 1.12 4.12 START print $content ; my $req = HTTP::Request->new (POST => 'http://10.0.0.2:8999/RPC2'); $req->header('Content-Type' => 'text/xml'); $req->content($content); my $response = $ua->request($req); print $response->content;