Thread https authentication error (78 answers)
Opened by a_abels at 2011-10-10 15:16

GwenDragon
 2011-10-12 17:11
#153139 #153139
User since
2005-01-17
14533 Artikel
Admin1
[Homepage]
user image
Vielleicht klappt die Authentifizierung nur nach einem get!
Erst ein get dann post.

Also vor Zeile 26 einfügen:
Code (perl): (dl )
1
2
3
4
5
6
7
8
my $response = $ua->get('https://poms-test.ts.fujitsu.com/CallLog');
if ($response->is_success) {
        print "\n\nis success (content):", $response->content, "\n\n";
}
else {
        print "\n\nis not success (status_line): ", $response->status_line, "\n\n";
#       print "\n\nis not success (content):", $response->content, "\n\n";
}


Das GET mit dem Internet Explorer hat ja geklappt mit der Authentifizierung!
Last edited: 2011-10-12 17:15:36 +0200 (CEST)
die Drachin, Gwendolyn


Unterschiedliche Perl-Versionen auf Windows (fast wie perlbrew) • Meine Perl-Artikel

Antworten mit Zitat

View full thread https authentication error