Hello People,
I'm running into some issue where in i can't figure out why.Here's whats happening,

The are two links where i'm trying to login,using www::mechanize,
1) http://host:7777/fagcs_302_C600_sfosun05/domain/
2) http://host:7778/fagcs_320_C106_sfoaix04/domain/
The submit_form works perfectly fine for second link but not the first one.
I'm getting this error/status "Couldn't submit form:500::500 Server closed connection without sending any data back".
Please guide me as to why it would no work for first case,how do i diagonize the issue?
Please not that,i can manually login to both pages with same usrname and pswd.
Please find the code below:

use strict; use WWW::Mechanize; my $url = 'http://host:7777/fagcs_302_C600_sfosun05/domain/'; #my $url = 'http://host:7778/fagcs_320_C106_sfoaix04/domain/'; my $username = 'usrname'; my $password = 'pswd'; my $agent = WWW::Mechanize->new(); $agent->get ($url); #print $agent->content(); if($agent->success()){ eval { $agent->submit_form ( form_number => 0, fields => { 'j_username' => $username, 'j_password' => $password, }, ); }; if ($@) {print "error :($@) "; } print "Couldn't submit form:".$agent->status() .":".":".$agent->conten +t()."\n" unless $agent->success; }

In reply to Mechanize:submit_form issue. by perlcoding

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.