Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 74029
Status: new
Priority: 0/
Queue: SOAP-Lite

People
Owner: Nobody in particular
Requestors: serg.kozhemyakin [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.714
Fixed in: (no value)



Subject: Serializer fails to serialize circular object
Serializer loops forever during processing complicated object with many circular references. Happens in perl 5.8 on aix and perl 5.10 on rhel Attached stored object that produces this bug and test script that uses it.
Subject: obj.stored
Download obj.stored
application/octet-stream 2.3k

Message body not shown because it is not plain text.

Subject: test_serializer.pl
#!/usr/bin/perl use Storable qw(nstore retrieve); my $obj = retrieve("obj.stored"); use SOAP::Lite +trace => 'all'; my $ser = SOAP::Serializer->new(); $ser->encode_object($obj);