in reply to LWP : Post Problem

you set the content_type twice. Try it with
$req->content($postStr);
instead. Even better use
use HTTP::Request::Common; my $res = $ua->request(POST =>$url, [ ettablenr => 2, etcell2x1=>'Task', ... ]);
Boris