Page 1 of 1

Axis V2 script bug

Posted: Sun Aug 31, 2008 7:30 pm
by Normando
The code:

Code: Select all

    my $req = HTTP::Request->new( GET=>"http://".$self->{Monitor}->{ControlAddress}."/$cmd" );
should be:

Code: Select all

    my $req = HTTP::Request->new( GET=>"http://".$self->{Monitor}->{ControlAddress}."$cmd" );

Posted: Sun Aug 31, 2008 7:42 pm
by cordel
Is this in 1.23.3?

Posted: Sun Aug 31, 2008 10:36 pm
by Normando
cordel wrote:Is this in 1.23.3?
Yes, sorry about the missing.
It is 1.23.3

Posted: Sun Aug 31, 2008 11:24 pm
by cordel
Thanks, got it noted ;)

Re: Axis V2 script bug

Posted: Tue Dec 09, 2008 5:18 am
by nivlek
Hello Normando,

thanks for this information. I just succeeded in getting 1.23.3 working with an AXIS 215 PTZ without this fix
Normando wrote:The code:

Code: Select all

    my $req = HTTP::Request->new( GET=>"http://".$self->{Monitor}->{ControlAddress}."/$cmd" );
should be:

Code: Select all

    my $req = HTTP::Request->new( GET=>"http://".$self->{Monitor}->{ControlAddress}."$cmd" );
Maybe I'm not going through that code ?

How do I recreate the problem?

Nivlek