in reply to SOAP::Lite Server Attachment
You might consider using Data::Dumper to dump $result (or just $result->parts).foreach my $part ( @{ $result->parts } ){
On the server side, why are you returning $ent,SOAP::Data->(...),$ent ? From the POD it looks like that should be
return SOAP::Data->name(...),$ent;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: SOAP::Lite Server Attachment
by Anonymous Monk on Aug 19, 2006 at 01:26 UTC |