Thread heute WWW::Mechanize :)
(12 answers)
Opened by xeroxed_yeti at 2007-08-02 15:15
Hi ich habe wieder ein Problem!
weiß wer was die Fehlermeldung: Code: (dl
)
500 Missing newline after chunk data: ' <ul>' in dem Script: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #!/usr/bin/perl -w use strict; use warnings; use WWW::Mechanize; my $htmlInput = ">ENSP00000260327 [Homo sapiens]\nMKLRTRKASQQSSPIQTQRTARAKRKYSEVDDSLPSGGE\n>ENSPTRP00000011989 [Pan trogldoytes]\nMRLRTRKASQ\n"; my $mech = WWW::Mechanize->new(); $mech->get('http://www.ebi.ac.uk/Tools/clustalw2/index.html'); $mech->submit_form( form_name => 'form3', fields => {'sequence' => $htmlInput} ); my $content = $mech->response()->content; print "$content\n"; verursacht? Bzw. bekommt ihr auch diese Fehlermeldung angezeigt? |