- or download this
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<label name="someLabel"/>
- or download this
use LWP::UserAgent;
...
$req->authorization_basic("username", "password");
$req->content($message);
my $result = $ua->request( $req );
- or download this
The server refused this request because the request entity is in a for
+mat not supported by the requested resource for the requested method.
- or download this
use LWP::UserAgent;
my $urlRequest = "http://bamboohost/rest/api/latest/result/projectname
+-planname-latest/label";
...
$req->content($message);
$req->content_type('application/xml');
my $result = $ua->request( $req );