in reply to Re: lwp+w/o jsessionid
in thread lwp+w/o jsessionid

throws error "Undefined subroutine &main:: called at UserAgent.pm line 16."
I named package as UserAgent

Replies are listed 'Best First'.
Re^3: lwp+w/o jsessionid
by ikegami (Patriarch) on Sep 21, 2008 at 04:25 UTC
    $uri->query_param_delete->( 'jsessionid' );
    should be
    $uri->query_param_delete( 'jsessionid' );

    Tested.