Your message dated Tue, 22 Jul 2008 23:23:09 +0300
with message-id <[EMAIL PROTECTED]>
and subject line Bug in soap-lite closed in version 0.710.08-1
has caused the Debian Bug report #435801,
regarding Can't call method "name" without a package or object reference at 
/usr/share/perl5/SOAP/Lite.pm line 3005.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
435801: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=435801
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libsoap-lite-perl
Version: 0.69-2
Severity: normal

hi,

weve got some proprietary SOAP Application im trying to access with SOAP::Lite,
but it barfs out the following way:

 Can't call method "name" without a package or object reference at 
/usr/share/perl5/SOAP/Lite.pm line 3005.

looking at line 3005 the next unless $_ statement seems to be commented out,
for whatever reason. Attached patch make the thing work again. Not sure if
its commented out by accident or the WSDL File of this app is broken
beyond.

bye,
    - michael
--- Lite.pm	2007-08-03 11:29:10.000000000 +0200
+++ /usr/share/perl5/SOAP/Lite.pm	2007-08-03 11:29:18.000000000 +0200
@@ -3001,7 +3001,7 @@
     }
     $self->{'_stub'} .= "    parameters => [\n";
     foreach (@{$services->{$service}{parameters}}) {
-#      next unless $_;
+      next unless $_;
       $self->{'_stub'} .= "      SOAP::Data->new(name => '".$_->name."', type => '".$_->type."', attr => {";
       $self->{'_stub'} .= do { my %attr = %{$_->attr}; 
                                join(', ', map {"'$_' => '$attr{$_}'"} 

--- End Message ---
--- Begin Message ---
Version: 0.710.08-1

After digging upstream SVN, the outcome is that the fix I was looking 
for is already released, so closing the bug :)

-- 
dam            JabberID: [EMAIL PROTECTED]

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply via email to