Re: POE application with web front end

2010-01-19 Thread Alejandro Imass
On Fri, Jan 15, 2010 at 9:38 PM, lanas wrote: > Le Vendredi, 15 Janvier 2010 09:43:36 -0500, > Alejandro Imass a écrit : > > Thanks for the comment.  My motivation to go with something that looks > like a framework to produce web-based interfaces is based on perception > of

Re: POE application with web front end

2010-01-15 Thread Alejandro Imass
o integrate with ?  If you have built Again, look at offering the HTTP service with POE itself and use something like the above. \> >  Thanks for any suggestions ! > Best, Alejandro Imass

Re: Move from one handler to another (manually)

2009-05-01 Thread Alejandro Imass
See "call" also. If you are using Object methods, just call it to shutdown. Shutting stuff down, IMHO seems to a bitch in general, so you may have to debug verbosely to find out who is keeping you from sutting down. On Sat, May 2, 2009 at 10:49 AM, Philip Gwyn wrote: > > On 01-May-2009 howard c

Re: PoCo::Generic suports Lowecase Methods ONLY ??? (was Non-blocking SOAP::Lite access with PoCo::Generic)

2008-06-23 Thread Alejandro Imass
d he uses /[a-z]$/ ; they seem to be checking for the same thing. My suggestion is to ONLY discard all caps methods with: unless( $method =~ /[^_A-Z]/ ){ croak ... ONLY in the AUTOLOAD sub, and get rid of the later check in the map sub. > > Martijn > Best, Alejandro Imass sig

Re: PoCo::Generic suports Lowecase Methods ONLY ??? (was Non-blocking SOAP::Lite access with PoCo::Generic)

2008-06-23 Thread Alejandro Imass
->unless( $method =~ /[^A-Z]/ ) { < HERE croak qq(Can't locate object method "$method" via package ") .ref( $self ). qq("); } El lun, 23-06-2008 a las 12:00 -0430, Alejandro Imass escribió: > Ok. I think I found the problem.

PoCo::Generic suports Lowecase Methods ONLY ??? (was Non-blocking SOAP::Lite access with PoCo::Generic)

2008-06-23 Thread Alejandro Imass
all the problems. If it so, it is not mentioned anywhere in the documentation, but I managed to get some stuff working by using lower-case methods and underscore. FYI, and just in case, I am using es_VE_UTF-8. Best, Alejandro Imass El lun, 23-06-2008 a las 10:58 -0430, Alejandro Imass escribió

Re: Non-blocking SOAP::Lite access

2008-05-07 Thread Alejandro Imass
I used this book: Programming Web Services with Perl By Pavel Kulchenko, Randy J. Ray Publisher : O'Reilly Pub Date : December 2002 ISBN : 0-596-00206-8 El mar, 06-05-2008 a las 10:39 -0500, P Dobranski escribió: > Nicholas, Alejandro, thanks for the excellent suggestions. > > I th

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 t

Fiddling with session once instantiated

2008-01-10 Thread Alejandro Imass
ot post to this session and callback one of my extended methods, forcing me to either setup another session to handle these extensions or to call the method directly (of my derived class) which sucks because it's not event-based. Thanks, Alejandro Imass signature.asc Description: Esta parte d

Re: RFC - Namespace dissertation for EAI Toolkit

2007-11-26 Thread Alejandro Imass
Thanks for your input Matt. We have had a meeting for about an hour and agree on your comments. We will publish the "Asynchronous Message Endpoint Server" under the top-level EAI namespace as such: EAI::AMES Thanks to all that have participated in this discussion. Alejandro Imass On

Re: RFC - Namespace dissertation for EAI Toolkit

2007-11-26 Thread Alejandro Imass
instead (although I would personally prefer EIP for that matter, but then again I could get sued Hohpe & Co. :) ). Any one else care to share an opinion? If no objections arise within the course of this week, we will use POE::Component::EAI as our base. Best, Alejandro Imass On lun, 2007-1

RFC - Namespace dissertation for EAI Toolkit

2007-11-26 Thread Alejandro Imass
Any ideas welcome! BTW, we want to publish our initial versions this week so please make your comments ASAP! Alejandro Imass Corcaribe Tecnología C.A. Guatire, Venezuela signature.asc Description: This is a digitally signed message part

PoCo mandatory shutdown events?

2007-11-18 Thread Alejandro Imass
here: http://poe.perl.org/?POE_Cookbook/Creating_Components_an_Intro To all the POE gurus here, please read the last paragraph in the posted article before some-body's house blows up because of me. Best, Alejandro Imass Corcaribe Tecnología C.A. Guatire, Venezuela signature.asc Description:

Re: Making a Component

2007-11-17 Thread Alejandro Imass
sion objects, some will return objects, some > return Session ID's to post() to, etc. > It depends on the implementation and the requirements. > > On Nov 16, 2007 6:39 PM, Alejandro Imass <[EMAIL PROTECTED]> wrote: > > > > All I have to do is return a sessi

Making a Component

2007-11-16 Thread Alejandro Imass
All I have to do is return a session? and that's it? use POE; use POE::Component::MyAwsomeComponent; POE::Component::MyAwsomeComponent->new(); and return a session, and that's it? perldoc POE::Component doesn't offer much more, and from the code of other components that seems to be about it.

Re: Comments wanted on new POE Project

2007-11-12 Thread Alejandro Imass
) and open protocols, namely SOAP and STOMP. Best regards, Alejandro Imass Corcaribe Tecnología C.A. Guatire, Venezuela On Sun, 2007-11-11 at 13:23 -0400, Alejandro Imass wrote: > Hi all, > > As I have learned that "POE’s documentation rewards the methodical > reader", thi

Comments wanted on new POE Project

2007-11-11 Thread Alejandro Imass
ween MQ Server and dedicated POE Services, I am really inclined to drop IKC for this project and simplify things a bit. Since my experience with POE is so limited, I turn to the experts here for recommendations and other ideas you might have on our general design, specially on the POE design patterns.