Thread https authentication error
(78 answers)
Opened by a_abels at 2011-10-10 15:16
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) |