On Wed, 27 Feb 2008 10:16:33 -0000
"Robert Rawlins - Think Blue" <[EMAIL PROTECTED]>
wrote:
> How would you manage this? I'm thinking about building my own custom log
> handler for the task, which if unable to resolve the webservice will just
> log to the file instead, I'm just not sure if there is a better way of
> achieving this, what are your thoughts?

Personally I would write to a local file all the time and have a second
process that reads that file and updates the server.  That way you
don't have to worry about external resources in your main program.  As
a side effect, you automatically get a local backup.  If the server
goes down your secondary process deals with it, not your primary app
that is handling your user requests.

-- 
D'Arcy J.M. Cain <[EMAIL PROTECTED]>         |  Democracy is three wolves
http://www.druid.net/darcy/                |  and a sheep voting on
+1 416 425 1212     (DoD#0082)    (eNTP)   |  what's for dinner.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to