Thread ERR: reconstitute blessed object (5 answers)
Opened by gluelangua at 2007-08-22 12:48

gluelangua
 2007-08-26 13:44
#98677 #98677
User since
2007-08-22
3 Artikel
BenutzerIn
[default_avatar]
@renee
Natürlich ;) Das funktioniert.


@All

Das Problem hat sich folgendermaßen lösen lassen:

1. Der CGI->param wird zerstört.
Code (perl): (dl )
DESTROY($co->param('blablub'));


2. Der Session->param wird geleert
Code (perl): (dl )
$session->param('blablub', '');


3. Der Rückgabewert wird "stringfiziert" gespeichert
Code (perl): (dl )
1
2
3
4
5
6
push (@{$uploadlist}, 
        newMap(
                $session->param('dbmapid').'',
                ...
        )
);


Zu 1:
http://www.unix.org.ua/orelly/perl/cookbook/ch13_03.htm

Vielen Dank für Eure Antworten!

View full thread ERR: reconstitute blessed object