Non-blocking SOAP::Lite access

2008-05-06 Thread P Dobranski
I have a need for access to a web service via SOAP from within a POE-based program. I would like that access to be non-blocking, which leads me to think that the SOAP::Lite service object needs to be implemented from within a POE::Wheel::Run. I've looked through CPAN and didn't really see an out

Re: Non-blocking SOAP::Lite access

2008-05-06 Thread Nicholas Perez
You could also look at the current POE::Component::Server::XMLRPC server implementation (that is growing rusty with bitrot at the moment). It makes use of XMLRPC::Lite (in the same space as SOAP::Lite) for ideas on how to do this non-blocking style On Mon, May 5, 2008 at 12:40 PM, P Dobranski

Re: Non-blocking SOAP::Lite access

2008-05-06 Thread Alejandro Imass
HI, If you are looking to implement asynchronous non-blocking outbound web services take a look at POE::Component::Server::AsyncEndpoint Each endpoint will run a separate process so it does no affect other services. Yo cal pull stuff via SOAP on one side and publish it on a STOMP queue. Then on

Re: Non-blocking SOAP::Lite access

2008-05-06 Thread Alejandro Imass
HI, If you are looking to implement asynchronous non-blocking outbound web services take a look at POE::Component::Server::AsyncEndpoint Each endpoint will run a separate process so it does no affect other services. Yo cal pull stuff via SOAP on one side and publish it on a STOMP queue. Then on