http://www.perlmonks.org?node_id=607927


in reply to Net::SMPP blowing up

I've never used Net::SMPP so I'm totally punting, but here are two wild guesses:

  1. Your destination_addr parameter doesn't have a plus sign at the beginning as shown in the sample code in Net::SMPP
  2. Using Data::Dumper can often help -- sometimes I see error messages like the one you are encountering when I try to invoke object methods on an object but I haven't correctly created the object, so the methods are invalid. Dump out $smpp and $resp_pdu or test 'em to make sure they are valid objects before you try to invoke their methods.

Replies are listed 'Best First'.
Re^2: Net::SMPP blowing up
by UnderMine (Friar) on Apr 03, 2007 at 09:26 UTC
    Got it working by changing the code to use the more convetional syntax :-
    sub status {
        my $me = shift;
        return $me->{status};
    }
    
    Thanks
    UnderMine