hi.

when I am trying to decode data :

$m = VoiceProxyProtobuf::AddDataResponse->decode($m);

I got :

Error: Mesage is incomplete or invalid at 
/usr/local/share/perl5/Google/ProtocolBuffers/CodecIV64.pm line 37

or

Error: Mesage is incomplete or invalid at 
/usr/local/share/perl5/Google/ProtocolBuffers/Codec.pm line 578

and my script crash ...

I am try :

eval {
    $m = VoiceProxyProtobuf::AddDataResponse->decode($m);
    };
show_mess("Error: Caught error ".$@);

and try :

try {
    $m = VoiceProxyProtobuf::AddDataResponse->decode($m);
    }
} catch {
    print "Error: Caught error ".$_;
    };

but nothing help.

How fix it ? Or how disable this error ?


thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.

Reply via email to