--- trunk/soap-client.pl 2005/08/02 19:41:28 70 +++ trunk/soap-client.pl 2005/08/22 20:24:04 72 @@ -14,7 +14,7 @@ $soap->on_debug(sub{print "# ",@_}) if ($debug); -my $list_id = $soap->NewList({ +my $list_id = $soap->CreateList({ list => 'My list', email => 'my-soap@example.com', })->result || die "can't add list"; @@ -61,7 +61,7 @@ print "deleted member\n"; -$soap->DeleteList({ +$soap->DropList({ list => 'My list' });