Thread Benutzen von RPC::XML mit einem webproxy (6 answers)
Opened by vayu at 2006-01-16 11:33

vayu
 2006-01-16 15:49
#37003 #37003
User since
2005-01-13
782 Artikel
BenutzerIn
[default_avatar]
Habe mich geirrt, es funktioniert noch nicht.

Quote
Error: RPC::XML::Client::send_request: HTTP server error: Can't read entity body: Unknown error


Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/perl

use strict;
use warnings;
use Term::ReadKey;

require RPC::XML;
require RPC::XML::Client;

my @logindata;

print "username:\n";
$logindata[0] = ReadLine(0);
ReadMode('noecho');
print "password:\n";
$logindata[1] = ReadLine(0);

my $cli = RPC::XML::Client->new('https://servername/rpc/xmlrpc');
my $ua = $cli->useragent;
$ua->proxy(['https'], 'proxyserver');
my $resp = $cli->send_request('login', $logindata[0], $logindata[1]);

print ref $resp ? join(', ', @{$resp->value}) : "Error: $resp";

exit 0;


tjo ... hat jemand eine ahnung woran das liegen könnte? die fehlermeldungen sagen mir irgendwie nicht viel :(\n\n

<!--EDIT|vayu|1137421399-->

View full thread Benutzen von RPC::XML mit einem webproxy