in reply to About SOAP ::Client written by me

Your $response is lexically scoped in the eval block.

say

my $response; eval { $response = ... }
or
my $response = eval { $webService->call(); };
_($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                              /\_¯/(q    /
----------------------------  \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}

Replies are listed 'Best First'.
Re^2: About SOAP ::Client written by me
by mohan123 (Novice) on Jun 21, 2006 at 13:26 UTC

    oops!
    Thanks for the reply . I added that block later on and completly forgot abt it after some time.
    thank you very much.