in reply to Daemon exits!

I've never used XMLRPC::Transport::HTTP::Daemon, but it seems like:
while(1) { $daemon->handle; }
would solve your problem.

Replies are listed 'Best First'.
Re: Re: Daemon exits!
by seaver (Pilgrim) on Jun 19, 2003 at 15:34 UTC
    It TOTALLY solved my problem, i cant believe how simple that was! But honestly, why would someone have

     $daemon->handle;

    without it being a daemon? is it a bug that I had to put the

    while(1)

    in?

    thanks so much anyway!

    Sam