Re: Memory leaks with SOAP Lite
Solution is to use the OO version:
use strict;
use warnings;
use SOAP::Lite;
my $soap = SOAP::Lite
-> uri('
http://172.19.17.252:443/')
-> proxy('
http://172.19.17.252:443/');
my $response;
while (1)
{
$response = $soap
-> kickWatchdog("gerard")
-> result;
print "$response\n";
sleep 5;
}
.
Relevant Pages
- Re: LWP seems to hang
... use strict; ... use warnings; ... for the next steps it's important that the response is ... successfull, otherwise we die. ... (comp.lang.perl.misc) - Re: adding comma seperated values from a multi line file and displaying data
... use strict; use warnings; ... my %evaluation; #total of each response to last 5 questions ... (perl.beginners) - deserialization arrays in Axis SOAP messages
... I have been trying to make requests of a web service provided by Axis using ... As a result of seraching news groups I guessed that the SOAP response ... defines an array element in a way that causes the dotnet deserialization ... I used SOAP extensions to manipulate the offending item in the SOAP ... (microsoft.public.dotnet.framework.webservices) - Re: SOAP serialization problem
... I've snooped the SOAP response, ... this deserialization, but I've not found any that work. ... You're the client and you are the customer of a Web service that's for your use only. ... (microsoft.public.dotnet.framework.aspnet) - Re: LIBTR/LBTR/ASS-C/ASSC; EMAIL2NNTP: Entrapping Craig?
... then Albert directly fosters a dangerous exception ... whilst Ayub all notes them too. ... Roberta, let alone plannings complete and furious, dares in response to it, ... Rifaat, have a strict ... (rec.music.classical.recordings) |
|