I am using to store data in table using SOAP::Lite
and SOAP::Data
.
I am facing the issue where if I send 5 requests, I am only getting 2 or 3 or sometimes zero responses.
What is the issue? How can I resolve this?
I am using to store data in table using SOAP::Lite
and SOAP::Data
.
I am facing the issue where if I send 5 requests, I am only getting 2 or 3 or sometimes zero responses.
What is the issue? How can I resolve this?
Acme::ESP
should help.
In the absence of any concrete information or succinct code sample exhibiting the problem, that is the best answer.
The posting guidelines for comp.lang.perl.misc have good tips on how to compose a question that is likely to elicit useful responses (I know, this is not UseNet, but the advice is still useful).
You may also benefit from esr's advice.
If and when you post information that can actually help solve your problem, I will either update this answer with relevant help or delete it if I cannot provide it.
As a starting point, you probably want to enable SOAP tracing.
require SOAP::Lite;
SOAP::Lite::import(+trace => 'debug');
This will help you gather more information and diagnose what's going on at the SOAP layer.