Skip Menu |

This queue is for tickets about the Net-DRI CPAN distribution.

Report information
The Basics
Id: 41032
Status: resolved
Priority: 0/
Queue: Net-DRI

People
Owner: patrick+cpan [...] patoche.org
Requestors: qcarandell [...] serveisweb.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.92
Fixed in: 0.92_01



Subject: Error in message_delete
Date: Tue, 18 Nov 2008 16:59:44 +0100
To: <bug-Net-DRI [...] rt.cpan.org>
From: "Joaquim Carandell" <qcarandell [...] serveisweb.com>
Hi, I use the Net-DRI-0.92 with perl 5.10 in a Linux debian 2.6.24-1-686 The Net::DRI::Protocol::EPP::Core::RegistryMessage::pollacak check if $msgid is numeric. The msgid of verisign are alphanumerics and send a exception. Best Regards Joaquim Carandell Masó Area de Desarrollo SERVEISWEB Tel. 902.010.664 / (34) 972.941.509 Fax (34) 972.941.500
Thanks Joaquim, My check was indeed incorrect, as the ID is of type « XML token ». This will be fixed in next version of Net::DRI, by having in Protocol/EPP/Core/RegistryMessage.pm this line in sub pollack instead of the current check: Net::DRI::Exception::usererr_invalid_parameters('In EPP, you must specify the message id (XML token) you want to delete') unless Net::DRI::Util::xml_is_token($msgid); which you can apply in the meantime to have your version working. Regards.